@n1ru4l/in-memory-live-query-store
Version:
[](https://www.npmjs.com/package/@n1ru4l/in-memory-live-query-store) [](https://www.np
9 lines (8 loc) • 322 B
TypeScript
export interface ThrottledFunction {
run: (...args: unknown[]) => void;
cancel: () => void;
}
/**
* Creates a throttled function that only invokes func at most once per every wait milliseconds.
*/
export declare const throttle: <T>(fn: (...args: unknown[]) => T | Promise<T>, wait: number) => ThrottledFunction;