@visualjs/grid
Version:
JavaScript Data Table
13 lines (12 loc) • 425 B
TypeScript
import { CellTransformer, CellTransformerParams } from "../../grid/cell";
export interface Props {
allowNotExistOption?: boolean;
options?: string[];
}
export declare class SelectionTransformer extends CellTransformer {
protected props: Props;
constructor(props?: Props);
format(params: CellTransformerParams): string;
parse(params: CellTransformerParams): any;
}
export default SelectionTransformer;