ngx-smart-spreadsheet
Version:
Lightweight spreadsheet module for Angular
13 lines (12 loc) • 320 B
TypeScript
declare class Cell {
tableId: string;
row: number;
col: number;
value: string;
editable: boolean;
id: string;
constructor(tableId: string, row: number, col: number, value: string, editable?: boolean);
withRow(index: number): Cell;
withCol(index: number): Cell;
}
export default Cell;