/** * Represents a position in the grid (start and span). * * @public */ export interface ITilePosition { start: number; span: number; } //# sourceMappingURL=ITilePosition.d.ts.map