UNPKG

redis-smq-common

Version:

RedisSMQ Common Library provides many components that are mainly used by RedisSMQ and RedisSMQ Monitor.

24 lines 1.33 kB
import { exec } from './exec.js'; import { map } from './map.js'; import { series } from './series.js'; import { waterfall } from './waterfall.js'; import { parallel } from './parallel.js'; import { withCallbackList } from './with-callback-list.js'; import { withCallback } from './with-callback.js'; import { withRetry } from './with-retry.js'; import { withTimeout } from './with-timeout.js'; export declare const async: { each: <T>(collection: T[] | Record<string, T>, iteratee: (item: T, key: number | string, callback: import("./index.js").ICallback<void>) => void, callback: import("./index.js").ICallback<void>) => void; eachIn: <T>(collection: Record<string, T>, iteratee: (item: T, key: string, callback: import("./index.js").ICallback<void>) => void, callback: import("./index.js").ICallback<void>) => void; eachOf: <T>(collection: T[], iteratee: (item: T, key: number, callback: import("./index.js").ICallback<void>) => void, callback: import("./index.js").ICallback<void>) => void; exec: typeof exec; map: typeof map; parallel: typeof parallel; series: typeof series; waterfall: typeof waterfall; withCallback: typeof withCallback; withCallbackList: typeof withCallbackList; withRetry: typeof withRetry; withTimeout: typeof withTimeout; }; //# sourceMappingURL=async.d.ts.map