interface DebouncedFunctionView codeA 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 ParametersT extends Array<unknown>View codeCall Signatures(...args: T): voidView codePropertiesreadonlypending: booleanView codeReturns a boolean whether a debounce call is pending or not. Methodsclear(): voidView codeClears the debounce timeout and omits calling the debounced function. flush(): voidView codeClears the debounce timeout and calls the debounced function immediately.