UNPKG

active-table

Version:

Framework agnostic table component for editable data experience

13 lines 365 B
import { CellText } from './tableData'; export interface ProgrammaticCellUpdateT { newText: CellText; rowIndex: number; columnIndex: number; } export interface ProgrammaticStructureUpdateT { structure: 'row' | 'column'; isInsert: boolean; index: number; data?: (string | number)[]; } //# sourceMappingURL=programmaticCellUpdateT.d.ts.map