import { ILocation } from './location';
import { ISize } from './size';
export interface IDimensions extends ILocation, ISize {
}
