Псевдоним типа DebouncedFunction<T>
type DebouncedFunction<T extends (...args: any[]) => any> = { cancel: () => void; (...args: Parameters<T>): void;} Параметры типа
- T extends (...args: any[]) => any
DebouncedFunction(...args: Parameters<T>): void
Свойства