Type Alias AnyFunction<Return>

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

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

Type Parameters

  • Return = any