UNPKG

visual-grid

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