clientnode 3.0.1015 → 3.0.1016
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -580,7 +580,7 @@ export declare class Tools<TElement = HTMLElement> {
|
|
|
580
580
|
*
|
|
581
581
|
* @returns Returns the wrapped method.
|
|
582
582
|
*/
|
|
583
|
-
static debounce<T = unknown>(this: void, callback: UnknownFunction, thresholdInMilliseconds?: number, ...additionalArguments: Array<unknown>): ((...
|
|
583
|
+
static debounce<T = unknown>(this: void, callback: UnknownFunction, thresholdInMilliseconds?: number, ...additionalArguments: Array<unknown>): ((...parameters: Array<unknown>) => Promise<T>);
|
|
584
584
|
/**
|
|
585
585
|
* Searches for internal event handler methods and runs them by default. In
|
|
586
586
|
* addition this method searches for a given event method by the options
|