UNPKG

387 BTypeScriptView Raw
1import Cell from './cell';
2import Base from './base';
3import { TCell } from './types';
4declare class Row extends Base {
5 private _cells;
6 constructor(cells?: Cell[]);
7 cell(index: number): Cell;
8 get cells(): Cell[];
9 set cells(cells: Cell[]);
10 toArray(): TCell[];
11 static fromCells(cells: Cell[]): Row;
12 get length(): number;
13}
14export default Row;