@visualjs/grid
Version:
JavaScript Data Table
12 lines (11 loc) • 410 B
TypeScript
import { GridOptions } from "../types";
import { CellTransformer } from "..";
import { CellTransformerParams } from "./cell";
export declare class Transformer extends CellTransformer {
protected prefix: string;
constructor(prefix?: string);
format(params: CellTransformerParams): string;
parse(params: CellTransformerParams): any;
}
export declare const data: GridOptions;
export default data;