export default class TaskManager { rateLimit: number; private running; private waiting; protected queueRun(fx: (...a: any[]) => Promise): Promise; protected processQueue(): void; /** * You can queue this function that will be * executed after all pending fetch tasks * are finished * @param fx any function */ runAfterEnd(fx: () => any): void; } //# sourceMappingURL=TaskManager.d.ts.map