type AnyAsyncFunction = (...args) => Promise<any>;
Defined in: types.ts:9
Represents an asynchronous function that can be called with any arguments and returns a promise.
...any[]
Promise<any>