8 lines
131 B
TypeScript
8 lines
131 B
TypeScript
import { IPoint } from './point';
|
|
|
|
export interface ICellRectangle {
|
|
height: number;
|
|
topLeft: IPoint;
|
|
width: number;
|
|
}
|