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

4 months ago
  1. import type { Arrayable } from 'element-plus/es/utils';
  2. import type { Ref } from 'vue';
  3. import type { TooltipTriggerType } from './trigger';
  4. export declare const isTriggerType: (trigger: Arrayable<TooltipTriggerType>, type: TooltipTriggerType) => boolean;
  5. export declare const whenTrigger: (trigger: Ref<Arrayable<TooltipTriggerType>>, type: TooltipTriggerType, handler: (e: Event) => void) => (e: Event) => void;