1 | import { Column } from './column';
|
2 | import { DataSet } from './data-set';
|
3 | import { Row } from './row';
|
4 | export declare function prepareValue(value: any): any;
|
5 | export declare class Cell {
|
6 | protected value: any;
|
7 | protected row: Row;
|
8 | protected column: any;
|
9 | protected dataSet: DataSet;
|
10 | newValue: any;
|
11 | protected static PREPARE: typeof prepareValue;
|
12 | constructor(value: any, row: Row, column: any, dataSet: DataSet);
|
13 | getColumn(): Column;
|
14 | getRow(): Row;
|
15 | getValue(): any;
|
16 | setValue(value: any): any;
|
17 | getId(): string;
|
18 | getTitle(): string;
|
19 | isEditable(): boolean;
|
20 | }
|