@newdash/newdash
Version:
javascript/typescript utility library
20 lines (19 loc) • 493 B
TypeScript
import { any } from "../any";
import { allSettled } from "./allSettled";
import { filter } from "./filter";
import { LazyPromise } from "./LazyPromise";
import { map } from "./map";
/**
* AsyncUtils
*
* @since 5.18.0
*/
export declare const AsyncUtils: {
filter: typeof filter;
map: typeof map;
allSettled: typeof allSettled;
any: typeof any;
timeout: typeof import("../timeout").createTimeoutPromise;
LazyPromise: typeof LazyPromise;
};
export default AsyncUtils;