This repository has been archived on 2026-03-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

5 lines
211 B
TypeScript

/**
* Like `Promise.allSettled()` but throws an error if any promises are rejected.
*/
export declare const allSettledWithThrow: <R>(promises: Promise<R>[]) => Promise<R[]>;
//# sourceMappingURL=Util.d.mts.map