UNPKG

@n1ru4l/in-memory-live-query-store

Version:

[![npm version](https://img.shields.io/npm/v/@n1ru4l/in-memory-live-query-store.svg)](https://www.npmjs.com/package/@n1ru4l/in-memory-live-query-store) [![npm downloads](https://img.shields.io/npm/dm/@n1ru4l/in-memory-live-query-store.svg)](https://www.np

9 lines (8 loc) 322 B
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;