Type Alias AnyFunction<Return>

AnyFunction<Return>: ((...args: any[]) => Return)

A Function with any inputs and a return type of Return (which defaults to any).

Type Parameters

  • Return = any