UNPKG

@visualjs/grid

Version:
13 lines (12 loc) 354 B
import { CellEditor, CellEditorParams } from "../../grid/cell"; interface Props { type?: string; } export declare class InputEditor extends CellEditor<Props> { protected input: HTMLInputElement; init(params: CellEditorParams<Props>): void; gui(): HTMLElement; afterAttached(): void; getValue(): any; } export default InputEditor;