Files
sashinexists/node_modules/dettle/dist/throttle.d.ts
2024-12-07 13:18:31 +11:00

4 lines
225 B
TypeScript

import type { FN, ThrottleOptions, Throttled } from './types.js';
declare const throttle: <Args extends unknown[]>(fn: FN<Args, unknown>, wait?: number, options?: ThrottleOptions) => Throttled<Args>;
export default throttle;