1 | import { Cell } from './cell';
|
2 | import { Column } from './column';
|
3 | import { DataSet } from './data-set';
|
4 | export declare class Row {
|
5 | index: number;
|
6 | protected data: any;
|
7 | protected _dataSet: DataSet;
|
8 | isSelected: boolean;
|
9 | isInEditing: boolean;
|
10 | cells: Array<Cell>;
|
11 | constructor(index: number, data: any, _dataSet: DataSet);
|
12 | getCell(column: Column): Cell;
|
13 | getCells(): Cell[];
|
14 | getData(): any;
|
15 | getIsSelected(): boolean;
|
16 | getNewData(): any;
|
17 | setData(data: any): any;
|
18 | process(): void;
|
19 | createCell(column: Column): Cell;
|
20 | }
|