UNPKG

tlojs

Version:

The Last One - The last npm package you'll need to install

10 lines (9 loc) 261 B
import { TableCell } from "./cell"; export declare class TableRow<T> { data: T; cells: TableCell<keyof T>[]; constructor(data: T); getCol(idx: number): TableCell<keyof T>; destroy(): void; static fromData<T>(data: T[]): TableRow<T>[]; }