This commit is contained in:
2024-04-18 21:12:37 +02:00
commit 78abae13b7
76 changed files with 8565 additions and 0 deletions

7
dist_ts/dettle/debounce.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
import type { FN, Debounced } from './types.js';
declare const debounce: <Args extends unknown[]>(fn: FN<Args, unknown>, wait?: number, options?: {
leading?: boolean;
trailing?: boolean;
maxWait?: number;
}) => Debounced<Args>;
export default debounce;