Skip to main content
Go to Latest
interface DebouncedFunction
import { type DebouncedFunction } from "https://deno.land/std@0.120.0/async/debounce.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 wether 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.