UNPKG

@visualjs/grid

Version:
13 lines (12 loc) 440 B
import { CellEditor, CellEditorParams } from "../../grid/cell"; export declare class CheckboxEditor extends CellEditor<{}> { protected wrapper: HTMLDivElement; protected checkbox: HTMLDivElement; protected mark: HTMLSpanElement; protected value: boolean; init(param: CellEditorParams<{}>): void; protected setValue(value: boolean): void; gui(): HTMLElement; getValue(): any; } export default CheckboxEditor;