UNPKG

@visualjs/grid

Version:
10 lines (9 loc) 264 B
import { Coordinate } from "../types"; import Range from './Range'; export declare class CellRange extends Range { start: Coordinate; end: Coordinate; constructor(start: Coordinate, end: Coordinate); isEmpty(): boolean; } export default CellRange;