import { ComponentInternalInstance, ComputedRef, Ref, } from 'vue' export type Nullable = null | T export interface IElDropdownInstance { instance?: ComponentInternalInstance dropdownSize?: ComputedRef visible?: Ref handleClick?: () => void commandHandler?: (...arg) => void show?: () => void hide?: () => void trigger?: ComputedRef hideOnClick?: ComputedRef triggerElm?: ComputedRef> }