Skip to content

Type Alias: AnyFn()

AnyFn = (...args) => any

Defined in: types.ts:202

Type alias for any function that takes any number of arguments and returns anything.

This type is used to represent a generic function without specifying a specific argument or return type. It can be helpful for situations where the exact function signature is not important.

Parameters

args

...any[]

Returns

any

Released under the MIT License.