You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
414 B
5 lines
414 B
import type { Arrayable } from 'element-plus/es/utils';
|
|
import type { Ref } from 'vue';
|
|
import type { TooltipTriggerType } from './trigger';
|
|
export declare const isTriggerType: (trigger: Arrayable<TooltipTriggerType>, type: TooltipTriggerType) => boolean;
|
|
export declare const whenTrigger: (trigger: Ref<Arrayable<TooltipTriggerType>>, type: TooltipTriggerType, handler: (e: Event) => void) => (e: Event) => void;
|