type AnyAsyncFunction = (...args) => Promise<any>;
定义于:types.ts:9
表示一个异步函数,可以使用任何参数调用并返回一个 Promise。
...any[]
Promise<any>