mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-01-24 06:45:59 +00:00
10 lines
375 B
TypeScript
10 lines
375 B
TypeScript
import type { ObjectDirective } from 'vue';
|
|
export declare const REPEAT_INTERVAL = 100;
|
|
export declare const REPEAT_DELAY = 600;
|
|
export interface RepeatClickOptions {
|
|
interval?: number;
|
|
delay?: number;
|
|
handler: (...args: unknown[]) => unknown;
|
|
}
|
|
export declare const vRepeatClick: ObjectDirective<HTMLElement, RepeatClickOptions | RepeatClickOptions['handler']>;
|