diff options
Diffstat (limited to 'cli/dts/lib.es2021.promise.d.ts')
-rw-r--r-- | cli/dts/lib.es2021.promise.d.ts | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/cli/dts/lib.es2021.promise.d.ts b/cli/dts/lib.es2021.promise.d.ts index 6a56c5512..e3db43ffa 100644 --- a/cli/dts/lib.es2021.promise.d.ts +++ b/cli/dts/lib.es2021.promise.d.ts @@ -39,5 +39,12 @@ interface PromiseConstructor { * @param values An array or iterable of Promises. * @returns A new Promise. */ - any<T>(values: (T | PromiseLike<T>)[] | Iterable<T | PromiseLike<T>>): Promise<T> + any<T extends readonly unknown[] | []>(values: T): Promise<Awaited<T[number]>>; + + /** + * The any function returns a promise that is fulfilled by the first given promise to be fulfilled, or rejected with an AggregateError containing an array of rejection reasons if all of the given promises are rejected. It resolves all elements of the passed iterable to promises as it runs this algorithm. + * @param values An array or iterable of Promises. + * @returns A new Promise. + */ + any<T>(values: Iterable<T | PromiseLike<T>>): Promise<Awaited<T>> } |