UNPKG

255 BTypeScriptView Raw
1export type NodeEditableEventType = 'blur' | 'keyup';
2export declare enum NodeEditableEventAction {
3 Cancel = 0
4}
5export interface NodeEditableEvent {
6 value: string;
7 type: NodeEditableEventType;
8 action?: NodeEditableEventAction;
9}