declare type PromiseFuncType = () => Promise; /** * 用于异步并发控制 */ export declare class PromisePoolService { all(opts: { promises: PromiseFuncType[]; limit: number; }): Promise; } export {};