Skip to content

Commit 4fc4c4e

Browse files
authored
Revert 'awaited' type (microsoft#37610)
1 parent 84a3252 commit 4fc4c4e

File tree

111 files changed

+1787
-4680
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+1787
-4680
lines changed

.eslintignore

-8
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,3 @@
22
/tests/**
33
/lib/**
44
/src/lib/*.generated.d.ts
5-
6-
# TODO: Remove the following once typescript-eslint supports `awaited`:
7-
/src/lib/es5.d.ts
8-
/src/lib/es2015.iterable.d.ts
9-
/src/lib/es2015.promise.d.ts
10-
/src/lib/es2018.promise.d.ts
11-
/src/lib/es2020.promise.d.ts
12-
/src/lib/esnext.promise.d.ts

src/compiler/checker.ts

+22-187
Large diffs are not rendered by default.

src/compiler/factoryPublic.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -939,8 +939,8 @@ namespace ts {
939939
}
940940

941941
export function createTypeOperatorNode(type: TypeNode): TypeOperatorNode;
942-
export function createTypeOperatorNode(operator: SyntaxKind.KeyOfKeyword | SyntaxKind.UniqueKeyword | SyntaxKind.ReadonlyKeyword | SyntaxKind.AwaitedKeyword, type: TypeNode): TypeOperatorNode;
943-
export function createTypeOperatorNode(operatorOrType: SyntaxKind.KeyOfKeyword | SyntaxKind.UniqueKeyword | SyntaxKind.ReadonlyKeyword | SyntaxKind.AwaitedKeyword | TypeNode, type?: TypeNode) {
942+
export function createTypeOperatorNode(operator: SyntaxKind.KeyOfKeyword | SyntaxKind.UniqueKeyword | SyntaxKind.ReadonlyKeyword, type: TypeNode): TypeOperatorNode;
943+
export function createTypeOperatorNode(operatorOrType: SyntaxKind.KeyOfKeyword | SyntaxKind.UniqueKeyword | SyntaxKind.ReadonlyKeyword | TypeNode, type?: TypeNode) {
944944
const node = createSynthesizedNode(SyntaxKind.TypeOperator) as TypeOperatorNode;
945945
node.operator = typeof operatorOrType === "number" ? operatorOrType : SyntaxKind.KeyOfKeyword;
946946
node.type = parenthesizeElementTypeMember(typeof operatorOrType === "number" ? type! : operatorOrType);

src/compiler/parser.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -3297,7 +3297,7 @@ namespace ts {
32973297
return finishNode(postfix);
32983298
}
32993299

3300-
function parseTypeOperator(operator: SyntaxKind.KeyOfKeyword | SyntaxKind.UniqueKeyword | SyntaxKind.ReadonlyKeyword | SyntaxKind.AwaitedKeyword) {
3300+
function parseTypeOperator(operator: SyntaxKind.KeyOfKeyword | SyntaxKind.UniqueKeyword | SyntaxKind.ReadonlyKeyword) {
33013301
const node = <TypeOperatorNode>createNode(SyntaxKind.TypeOperator);
33023302
parseExpected(operator);
33033303
node.operator = operator;
@@ -3320,7 +3320,6 @@ namespace ts {
33203320
case SyntaxKind.KeyOfKeyword:
33213321
case SyntaxKind.UniqueKeyword:
33223322
case SyntaxKind.ReadonlyKeyword:
3323-
case SyntaxKind.AwaitedKeyword:
33243323
return parseTypeOperator(operator);
33253324
case SyntaxKind.InferKeyword:
33263325
return parseInferType();

src/compiler/scanner.ts

-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ namespace ts {
146146
yield: SyntaxKind.YieldKeyword,
147147
async: SyntaxKind.AsyncKeyword,
148148
await: SyntaxKind.AwaitKeyword,
149-
awaited: SyntaxKind.AwaitedKeyword,
150149
of: SyntaxKind.OfKeyword,
151150
};
152151

src/compiler/types.ts

+2-10
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ namespace ts {
107107
| SyntaxKind.YieldKeyword
108108
| SyntaxKind.AsyncKeyword
109109
| SyntaxKind.AwaitKeyword
110-
| SyntaxKind.AwaitedKeyword
111110
| SyntaxKind.OfKeyword;
112111

113112
export type JsxTokenSyntaxKind =
@@ -262,7 +261,6 @@ namespace ts {
262261
AnyKeyword,
263262
AsyncKeyword,
264263
AwaitKeyword,
265-
AwaitedKeyword,
266264
BooleanKeyword,
267265
ConstructorKeyword,
268266
DeclareKeyword,
@@ -1320,7 +1318,7 @@ namespace ts {
13201318

13211319
export interface TypeOperatorNode extends TypeNode {
13221320
kind: SyntaxKind.TypeOperator;
1323-
operator: SyntaxKind.KeyOfKeyword | SyntaxKind.UniqueKeyword | SyntaxKind.ReadonlyKeyword | SyntaxKind.AwaitedKeyword;
1321+
operator: SyntaxKind.KeyOfKeyword | SyntaxKind.UniqueKeyword | SyntaxKind.ReadonlyKeyword;
13241322
type: TypeNode;
13251323
}
13261324

@@ -4352,7 +4350,6 @@ namespace ts {
43524350
Conditional = 1 << 24, // T extends U ? X : Y
43534351
Substitution = 1 << 25, // Type parameter substitution
43544352
NonPrimitive = 1 << 26, // intrinsic object type
4355-
Awaited = 1 << 27, // awaited T
43564353

43574354
/* @internal */
43584355
AnyOrUnknown = Any | Unknown,
@@ -4382,7 +4379,7 @@ namespace ts {
43824379
UnionOrIntersection = Union | Intersection,
43834380
StructuredType = Object | Union | Intersection,
43844381
TypeVariable = TypeParameter | IndexedAccess,
4385-
InstantiableNonPrimitive = TypeVariable | Conditional | Substitution | Awaited,
4382+
InstantiableNonPrimitive = TypeVariable | Conditional | Substitution,
43864383
InstantiablePrimitive = Index,
43874384
Instantiable = InstantiableNonPrimitive | InstantiablePrimitive,
43884385
StructuredOrInstantiable = StructuredType | Instantiable,
@@ -4827,11 +4824,6 @@ namespace ts {
48274824
substitute: Type; // Type to substitute for type parameter
48284825
}
48294826

4830-
// awaited T (TypeFlags.Awaited)
4831-
export interface AwaitedType extends InstantiableType {
4832-
awaitedType: Type;
4833-
}
4834-
48354827
/* @internal */
48364828
export const enum JsxReferenceKind {
48374829
Component,

src/lib/es2015.iterable.d.ts

+10-2
Original file line numberDiff line numberDiff line change
@@ -203,15 +203,23 @@ interface PromiseConstructor {
203203
* @param values An iterable of Promises.
204204
* @returns A new Promise.
205205
*/
206-
all<T>(values: Iterable<T | PromiseLike<T>>): Promise<(awaited T)[]>;
206+
all<T>(values: Iterable<T | PromiseLike<T>>): Promise<T[]>;
207207

208208
/**
209209
* Creates a Promise that is resolved or rejected when any of the provided Promises are resolved
210210
* or rejected.
211211
* @param values An iterable of Promises.
212212
* @returns A new Promise.
213213
*/
214-
race<T>(values: Iterable<T | PromiseLike<T>>): Promise<awaited T>;
214+
race<T>(values: Iterable<T>): Promise<T extends PromiseLike<infer U> ? U : T>;
215+
216+
/**
217+
* Creates a Promise that is resolved or rejected when any of the provided Promises are resolved
218+
* or rejected.
219+
* @param values An iterable of Promises.
220+
* @returns A new Promise.
221+
*/
222+
race<T>(values: Iterable<T | PromiseLike<T>>): Promise<T>;
215223
}
216224

217225
declare namespace Reflect {

src/lib/es2015.promise.d.ts

+22-30
Original file line numberDiff line numberDiff line change
@@ -10,123 +10,115 @@ interface PromiseConstructor {
1010
* a resolve callback used to resolve the promise with a value or the result of another promise,
1111
* and a reject callback used to reject the promise with a provided reason or error.
1212
*/
13-
new <T>(executor: (resolve: (value?: T | PromiseLike<T> | awaited T) => void, reject: (reason?: any) => void) => void): Promise<T>;
13+
new <T>(executor: (resolve: (value?: T | PromiseLike<T>) => void, reject: (reason?: any) => void) => void): Promise<T>;
1414

1515
/**
1616
* Creates a Promise that is resolved with an array of results when all of the provided Promises
1717
* resolve, or rejected when any Promise is rejected.
1818
* @param values An array of Promises.
1919
* @returns A new Promise.
2020
*/
21-
all<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>, T8 | PromiseLike<T8>, T9 | PromiseLike<T9>, T10 | PromiseLike<T10>]): Promise<[awaited T1, awaited T2, awaited T3, awaited T4, awaited T5, awaited T6, awaited T7, awaited T8, awaited T9, awaited T10]>;
21+
all<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>, T8 | PromiseLike<T8>, T9 | PromiseLike<T9>, T10 | PromiseLike<T10>]): Promise<[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10]>;
2222

2323
/**
2424
* Creates a Promise that is resolved with an array of results when all of the provided Promises
2525
* resolve, or rejected when any Promise is rejected.
2626
* @param values An array of Promises.
2727
* @returns A new Promise.
2828
*/
29-
all<T1, T2, T3, T4, T5, T6, T7, T8, T9>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>, T8 | PromiseLike<T8>, T9 | PromiseLike<T9>]): Promise<[awaited T1, awaited T2, awaited T3, awaited T4, awaited T5, awaited T6, awaited T7, awaited T8, awaited T9]>;
30-
31-
/**
32-
* Creates a Promise that is resolved with an array of results when all of the provided Promises
33-
* resolve, or rejected when any Promise is rejected.
34-
* @param values An array of Promises.
35-
* @returns A new Promise.
36-
*/
37-
all<T1, T2, T3, T4, T5, T6, T7, T8>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>, T8 | PromiseLike<T8>]): Promise<[awaited T1, awaited T2, awaited T3, awaited T4, awaited T5, awaited T6, awaited T7, awaited T8]>;
38-
29+
all<T1, T2, T3, T4, T5, T6, T7, T8, T9>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>, T8 | PromiseLike<T8>, T9 | PromiseLike<T9>]): Promise<[T1, T2, T3, T4, T5, T6, T7, T8, T9]>;
30+
3931
/**
4032
* Creates a Promise that is resolved with an array of results when all of the provided Promises
4133
* resolve, or rejected when any Promise is rejected.
4234
* @param values An array of Promises.
4335
* @returns A new Promise.
4436
*/
45-
all<T1, T2, T3, T4, T5, T6, T7>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>]): Promise<[awaited T1, awaited T2, awaited T3, awaited T4, awaited T5, awaited T6, awaited T7]>;
46-
37+
all<T1, T2, T3, T4, T5, T6, T7, T8>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>, T8 | PromiseLike<T8>]): Promise<[T1, T2, T3, T4, T5, T6, T7, T8]>;
38+
4739
/**
4840
* Creates a Promise that is resolved with an array of results when all of the provided Promises
4941
* resolve, or rejected when any Promise is rejected.
5042
* @param values An array of Promises.
5143
* @returns A new Promise.
5244
*/
53-
all<T1, T2, T3, T4, T5, T6>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>]): Promise<[awaited T1, awaited T2, awaited T3, awaited T4, awaited T5, awaited T6]>;
54-
45+
all<T1, T2, T3, T4, T5, T6, T7>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>]): Promise<[T1, T2, T3, T4, T5, T6, T7]>;
46+
5547
/**
5648
* Creates a Promise that is resolved with an array of results when all of the provided Promises
5749
* resolve, or rejected when any Promise is rejected.
5850
* @param values An array of Promises.
5951
* @returns A new Promise.
6052
*/
61-
all<T1, T2, T3, T4, T5>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>]): Promise<[awaited T1, awaited T2, awaited T3, awaited T4, awaited T5]>;
62-
53+
all<T1, T2, T3, T4, T5, T6>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>]): Promise<[T1, T2, T3, T4, T5, T6]>;
54+
6355
/**
6456
* Creates a Promise that is resolved with an array of results when all of the provided Promises
6557
* resolve, or rejected when any Promise is rejected.
6658
* @param values An array of Promises.
6759
* @returns A new Promise.
6860
*/
69-
all<T1, T2, T3, T4>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>]): Promise<[awaited T1, awaited T2, awaited T3, awaited T4]>;
70-
61+
all<T1, T2, T3, T4, T5>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>]): Promise<[T1, T2, T3, T4, T5]>;
62+
7163
/**
7264
* Creates a Promise that is resolved with an array of results when all of the provided Promises
7365
* resolve, or rejected when any Promise is rejected.
7466
* @param values An array of Promises.
7567
* @returns A new Promise.
7668
*/
77-
all<T1, T2, T3>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>]): Promise<[awaited T1, awaited T2, awaited T3]>;
78-
69+
all<T1, T2, T3, T4>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>]): Promise<[T1, T2, T3, T4]>;
70+
7971
/**
8072
* Creates a Promise that is resolved with an array of results when all of the provided Promises
8173
* resolve, or rejected when any Promise is rejected.
8274
* @param values An array of Promises.
8375
* @returns A new Promise.
8476
*/
85-
all<T1, T2>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>]): Promise<[awaited T1, awaited T2]>;
77+
all<T1, T2, T3>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>]): Promise<[T1, T2, T3]>;
8678

8779
/**
8880
* Creates a Promise that is resolved with an array of results when all of the provided Promises
8981
* resolve, or rejected when any Promise is rejected.
9082
* @param values An array of Promises.
9183
* @returns A new Promise.
9284
*/
93-
all<T extends readonly unknown[] | []>(values: T): Promise<{ -readonly [P in keyof T]: awaited T[P] }>;
85+
all<T1, T2>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>]): Promise<[T1, T2]>;
9486

9587
/**
9688
* Creates a Promise that is resolved with an array of results when all of the provided Promises
9789
* resolve, or rejected when any Promise is rejected.
9890
* @param values An array of Promises.
9991
* @returns A new Promise.
10092
*/
101-
all<T>(values: readonly (T | PromiseLike<T>)[]): Promise<(awaited T)[]>;
93+
all<T>(values: readonly (T | PromiseLike<T>)[]): Promise<T[]>;
10294

10395
// see: lib.es2015.iterable.d.ts
104-
// all<T>(values: Iterable<T | PromiseLike<T>>): Promise<(awaited T)[]>;
96+
// all<T>(values: Iterable<T | PromiseLike<T>>): Promise<T[]>;
10597

10698
/**
10799
* Creates a Promise that is resolved or rejected when any of the provided Promises are resolved
108100
* or rejected.
109101
* @param values An array of Promises.
110102
* @returns A new Promise.
111103
*/
112-
race<T>(values: readonly (T | PromiseLike<T>)[]): Promise<awaited T>;
104+
race<T>(values: readonly T[]): Promise<T extends PromiseLike<infer U> ? U : T>;
113105

114106
// see: lib.es2015.iterable.d.ts
115-
// race<T>(values: Iterable<T | PromiseLike<T>>): Promise<awaited T>;
107+
// race<T>(values: Iterable<T>): Promise<T extends PromiseLike<infer U> ? U : T>;
116108

117109
/**
118110
* Creates a new rejected promise for the provided reason.
119111
* @param reason The reason the promise was rejected.
120112
* @returns A new rejected Promise.
121113
*/
122-
reject<T = never>(reason?: any): Promise<awaited T>;
114+
reject<T = never>(reason?: any): Promise<T>;
123115

124116
/**
125117
* Creates a new resolved promise for the provided value.
126118
* @param value A promise.
127119
* @returns A promise whose internal state matches the provided promise.
128120
*/
129-
resolve<T>(value: T | PromiseLike<T>): Promise<awaited T>;
121+
resolve<T>(value: T | PromiseLike<T>): Promise<T>;
130122

131123
/**
132124
* Creates a new resolved promise .

src/lib/es2018.promise.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ interface Promise<T> {
88
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
99
* @returns A Promise for the completion of the callback.
1010
*/
11-
finally(onfinally?: (() => void | PromiseLike<void>) | undefined | null): Promise<awaited T>
11+
finally(onfinally?: (() => void) | undefined | null): Promise<T>
1212
}

src/lib/es2020.promise.d.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,14 @@ interface PromiseConstructor {
1717
* @param values An array of Promises.
1818
* @returns A new Promise.
1919
*/
20-
allSettled<T extends readonly unknown[] | []>(values: T): Promise<{ -readonly [P in keyof T]: PromiseSettledResult<awaited T[P]> }>;
20+
allSettled<T extends readonly unknown[] | readonly [unknown]>(values: T):
21+
Promise<{ -readonly [P in keyof T]: PromiseSettledResult<T[P] extends PromiseLike<infer U> ? U : T[P]> }>;
2122

2223
/**
2324
* Creates a Promise that is resolved with an array of results when all
2425
* of the provided Promises resolve or reject.
2526
* @param values An array of Promises.
2627
* @returns A new Promise.
2728
*/
28-
allSettled<T>(values: Iterable<T | PromiseLike<T>>): Promise<PromiseSettledResult<awaited T>[]>;
29+
allSettled<T>(values: Iterable<T>): Promise<PromiseSettledResult<T extends PromiseLike<infer U> ? U : T>[]>;
2930
}

src/lib/es5.d.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1378,7 +1378,7 @@ declare type PropertyDecorator = (target: Object, propertyKey: string | symbol)
13781378
declare type MethodDecorator = <T>(target: Object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<T>) => TypedPropertyDescriptor<T> | void;
13791379
declare type ParameterDecorator = (target: Object, propertyKey: string | symbol, parameterIndex: number) => void;
13801380

1381-
declare type PromiseConstructorLike = new <T>(executor: (resolve: (value?: T | PromiseLike<T> | awaited T) => void, reject: (reason?: any) => void) => void) => PromiseLike<T>;
1381+
declare type PromiseConstructorLike = new <T>(executor: (resolve: (value?: T | PromiseLike<T>) => void, reject: (reason?: any) => void) => void) => PromiseLike<T>;
13821382

13831383
interface PromiseLike<T> {
13841384
/**
@@ -1387,7 +1387,7 @@ interface PromiseLike<T> {
13871387
* @param onrejected The callback to execute when the Promise is rejected.
13881388
* @returns A Promise for the completion of which ever callback is executed.
13891389
*/
1390-
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: awaited T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): PromiseLike<awaited TResult1 | awaited TResult2>;
1390+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): PromiseLike<TResult1 | TResult2>;
13911391
}
13921392

13931393
/**
@@ -1400,14 +1400,14 @@ interface Promise<T> {
14001400
* @param onrejected The callback to execute when the Promise is rejected.
14011401
* @returns A Promise for the completion of which ever callback is executed.
14021402
*/
1403-
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: awaited T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): Promise<awaited TResult1 | awaited TResult2>;
1403+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): Promise<TResult1 | TResult2>;
14041404

14051405
/**
14061406
* Attaches a callback for only the rejection of the Promise.
14071407
* @param onrejected The callback to execute when the Promise is rejected.
14081408
* @returns A Promise for the completion of the callback.
14091409
*/
1410-
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): Promise<awaited T | awaited TResult>;
1410+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): Promise<T | TResult>;
14111411
}
14121412

14131413
interface ArrayLike<T> {

src/lib/esnext.promise.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ interface PromiseConstructor {
1919
* @param values An array or iterable of Promises.
2020
* @returns A new Promise.
2121
*/
22-
any<T>(values: (T | PromiseLike<T>)[] | Iterable<T | PromiseLike<T>>): Promise<awaited T>
22+
any<T>(values: (T | PromiseLike<T>)[] | Iterable<T | PromiseLike<T>>): Promise<T>
2323
}

0 commit comments

Comments
 (0)