Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
8 lines
458 B
Plaintext
8 lines
458 B
Plaintext
/**
|
|
* Returns a memoized function that will only call the passed function when it hasn't been called for the wait period
|
|
* @param func The function to be called
|
|
* @param wait Wait period after function hasn't been called for
|
|
* @returns A memoized function that is debounced
|
|
*/
|
|
export declare const useDebouncedCallback: <TFunctionArgs = any>(func: any, wait: any) => (...args: TFunctionArgs[]) => void;
|
|
//# sourceMappingURL=useDebouncedCallback.d.ts.map |