Util.d.ts 210 B

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