mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-27 17:50:53 +01:00
2 lines
198 B
Go
2 lines
198 B
Go
export declare function debounce<T extends (...args: any[]) => any>(func: T, wait?: number): (...args: Parameters<T>) => ReturnType<T> extends Promise<any> ? Promise<ReturnType<T>> : ReturnType<T>;
|