handsontable
Version:
Handsontable is a JavaScript Spreadsheet Component available for React, Angular and Vue.
17 lines (14 loc) • 435 B
TypeScript
export default class CellCoords {
constructor(row: number, column: number);
row: number;
col: number;
isValid(wot: any): boolean;
isEqual(cellCoords: CellCoords): boolean;
isSouthEastOf(testedCoords: any): boolean;
isNorthWestOf(testedCoords: any): boolean;
isSouthWestOf(testedCoords: any): boolean;
isNorthEastOf(testedCoords: any): boolean;
normalize(): CellCoords;
clone(): CellCoords;
toObject(): any;
}