Skip to main content
Version: Next

GenericFunction

GenericFunction

Represents a generic function type that can accept any number of arguments.

Signature
type GenericFunction<A extends any[] = any[]> = (...args: A) => any