UNPKG

ng2-smart-table-custom

Version:

Angular Smart Table with inline-validations support

21 lines (20 loc) 594 B
import { Column } from './column'; import { DataSet } from './data-set'; import { Row } from './row'; export declare class Cell { protected value: any; protected row: Row; protected column: any; protected dataSet: DataSet; newValue: any; protected static PREPARE: (value: any) => any; constructor(value: any, row: Row, column: any, dataSet: DataSet); getColumn(): Column; getValidator(): any; getRow(): Row; getValue(): any; setValue(value: any): any; getId(): string; getTitle(): string; isEditable(): boolean; }