Interface: DebouncedFunction<Args, F>
Categroy
functionn
Type parameters
| Name | Type |
|---|---|
Args | extends any[] |
F | extends (...args: Args) => any |
Callable
DebouncedFunction
▸ DebouncedFunction(this, ...args): Promise<ReturnType<F>>
Parameters
| Name | Type |
|---|---|
this | ThisParameterType<F> |
...args | Args & Parameters<F> |
Returns
Promise<ReturnType<F>>
Defined in
Properties
cancel
• cancel: (reason?: any) => void
Type declaration
▸ (reason?): void
Parameters
| Name | Type |
|---|---|
reason? | any |
Returns
void