234059d7b8d4a348997d80991644a3bab08031688749a3d2792fb98bae95ba78dbedee4ecc7e0323597148f878a3a029fb353e86f9990c03f35a9b4a37a94e 375 B

123456789
  1. import type { ObjectDirective } from 'vue';
  2. export declare const REPEAT_INTERVAL = 100;
  3. export declare const REPEAT_DELAY = 600;
  4. export interface RepeatClickOptions {
  5. interval?: number;
  6. delay?: number;
  7. handler: (...args: unknown[]) => unknown;
  8. }
  9. export declare const vRepeatClick: ObjectDirective<HTMLElement, RepeatClickOptions | RepeatClickOptions['handler']>;