UNPKG

vue-launchers

Version:
33 lines (32 loc) 926 B
export declare enum BaseEvent { ON_CLICK = "click", ON_DBL_CLICK = "dblclick", ON_MOUSE_ENTER = "mouseenter", ON_MOUSE_LEAVE = "mouseleave" } export declare enum InteractEvents { INTERACT_ON = "interactOn", INTERACT_COMPONENT_ID = "interactComponentId", INTERACT_FN = "interactFn" } export declare enum InteractEventOn { CLICK = "click", CHANGE = "change" } export declare const COMPONENT_INTERACT_EVENT_KET = "componentInteractEventKey"; export type InteractActionsType = { interactType: InteractEventOn; interactName: string; componentEmitEvents: { [T: string]: { value: any; label: string; }[]; }; }; export declare enum EventLife { VNODE_MOUNTED = "vnodeMounted", VNODE_BEFORE_MOUNT = "vnodeBeforeMount" } export declare const excludeParseEventKeyList: string[]; export declare const excludeParseEventValueList: string[];