Skip to content

Type Alias: AnyCallable

ts
type AnyCallable = (this: void, ...args: AnyArgs) => any;

Any callable without a this context.

Parameters

ParameterType
thisvoid
...argsAnyArgs

Returns

any