Alokai

AnyFunction

AnyFunction type represents a function that accepts any number of arguments and returns any type of value. It is used for the connector methods, interceptors, overrides and extensions for which we don't know the exact types.

type AnyFunction = (...args: any[]) => any;