版博士V2.0程序
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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']>;