update
This commit is contained in:
6
dist_ts/dettle/throttle.d.ts
vendored
Normal file
6
dist_ts/dettle/throttle.d.ts
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import type { FN, Throttled } from './types.js';
|
||||
declare const throttle: <Args extends unknown[]>(fn: FN<Args, unknown>, wait?: number, options?: {
|
||||
leading?: boolean;
|
||||
trailing?: boolean;
|
||||
}) => Throttled<Args>;
|
||||
export default throttle;
|
||||
Reference in New Issue
Block a user