Type alias Func

Func: ((...args) => any)

Generic "Function" type, because typescript does not like using "Function" directly in strict mode

Type declaration

    • (...args): any
    • Parameters

      • Rest ...args: any[]

      Returns any