/**
 * @category Interfaces
 */
export interface IDimension {
    width: number;
    height: number;
}
