Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/capi/deps/std/async.ts>DebouncedFunction

[WIP] A framework for crafting interactions with Substrate chains
Latest
interface DebouncedFunction
import { type DebouncedFunction } from "https://deno.land/x/capi@v0.1.1-beta.1/deps/std/async.ts";

A debounced function that will be delayed by a given wait time in milliseconds. If the method is called again before the timeout expires, the previous call will be aborted.

Type Parameters

T extends Array<unknown>

Call Signatures

(...args: T): void

Properties

readonly
pending: boolean

Returns a boolean whether a debounce call is pending or not.

Methods

clear(): void

Clears the debounce timeout and omits calling the debounced function.

flush(): void

Clears the debounce timeout and calls the debounced function immediately.