Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/netzo/deps/usehooks-ts.ts>DebouncedState

Full-stack Deno framework for building business web apps like internal tools, dashboards, admin panels and automated workflows.
Go to Latest
interface DebouncedState
implements ControlFunctions
import { type DebouncedState } from "https://deno.land/x/netzo@0.5.66/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>

Call Signatures

(...args: Parameters<T>): ReturnType<T> | undefined