diff options
Diffstat (limited to 'cli/tsc/dts/lib.es2015.promise.d.ts')
| -rw-r--r-- | cli/tsc/dts/lib.es2015.promise.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tsc/dts/lib.es2015.promise.d.ts b/cli/tsc/dts/lib.es2015.promise.d.ts index cd2adb675..43b1bd24a 100644 --- a/cli/tsc/dts/lib.es2015.promise.d.ts +++ b/cli/tsc/dts/lib.es2015.promise.d.ts @@ -36,7 +36,7 @@ interface PromiseConstructor { * @param values An array of Promises. * @returns A new Promise. */ - all<T extends readonly unknown[] | []>(values: T): Promise<{ -readonly [P in keyof T]: Awaited<T[P]> }>; + all<T extends readonly unknown[] | []>(values: T): Promise<{ -readonly [P in keyof T]: Awaited<T[P]>; }>; // see: lib.es2015.iterable.d.ts // all<T>(values: Iterable<T | PromiseLike<T>>): Promise<Awaited<T>[]>; |
