GenericFunction
GenericFunction
Represents a generic function type that can accept any number of arguments.
Signature
type GenericFunction<A extends any[] = any[]> = (...args: A) => any
Represents a generic function type that can accept any number of arguments.
type GenericFunction<A extends any[] = any[]> = (...args: A) => any