import { YvEvent } from './YvanEvent'; export default class CtlGridEditor { data: any; colDef: any; column: any; focusAfterAttached: any; field: any; valid: any; origin: any; vue: any; editParams: any; value: any; type: any; /** * 离开焦点或按下回车键之后触发更改时触发 */ onChange?: YvEvent; init(params: any): void; getGui(): void; afterGuiAttached(): void; getValue(): void; setValue(newValue: any): void; destroy(): void; isPopup(): boolean; isCancelBeforeStart(): void; isCancelAfterEnd(): void; focusIn(): void; focusOut(): void; }