import { IPoint } from './point'; export interface ICellRectangle { height: number; topLeft: IPoint; width: number; }