Type of the rest arguments of a function. Use:
function foo<T extends any[]>(...args: RestArguments<T>) { // ...;} Copy
function foo<T extends any[]>(...args: RestArguments<T>) { // ...;}
Generated using TypeDoc
Type of the rest arguments of a function. Use: