@visualjs/grid
Version:
JavaScript Data Table
13 lines (12 loc) • 354 B
TypeScript
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;