UNPKG

@visualjs/grid

Version:
14 lines (13 loc) 401 B
import { ColumnOptions } from "../../types"; import { Grid } from "../../index"; export interface CellTransformerParams { oldValue?: any; value: any; column: ColumnOptions; gird: Grid; } export declare abstract class CellTransformer { abstract format(params: CellTransformerParams): string; abstract parse(params: CellTransformerParams): any; } export default CellTransformer;