We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5160d1 commit 20c3784Copy full SHA for 20c3784
src/lib/esnext.promise.d.ts
@@ -1,3 +1,15 @@
1
+interface AggregateError extends Error {
2
+ errors: ArrayLike<any>
3
+}
4
+
5
+interface AggregateErrorConstructor {
6
+ new(errors: ArrayLike<any>, message?: string): AggregateError;
7
+ (errors: ArrayLike<any>, message?: string): AggregateError;
8
+ readonly prototype: AggregateError;
9
10
11
+declare var AggregateError: AggregateErrorConstructor;
12
13
/**
14
* Represents the completion of an asynchronous operation
15
*/
0 commit comments