import { type DebouncedState } from "https://deno.land/x/netzo@0.4.72/deps/usehooks-ts.ts";
Represents the state and control functions of a debounced callback. Subsequent calls to the debounced function return the result of the last invocation. Note: If there are no previous invocations, the result will be undefined. Ensure proper handling in your code.
Type Parameters
T extends (...args: any) => ReturnType<T>