diff options
Diffstat (limited to 'cli/tsc/dts/lib.es2021.promise.d.ts')
-rw-r--r-- | cli/tsc/dts/lib.es2021.promise.d.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/tsc/dts/lib.es2021.promise.d.ts b/cli/tsc/dts/lib.es2021.promise.d.ts index a81e3e5e1..5ec1f5f7b 100644 --- a/cli/tsc/dts/lib.es2021.promise.d.ts +++ b/cli/tsc/dts/lib.es2021.promise.d.ts @@ -17,11 +17,11 @@ and limitations under the License. /// <reference no-default-lib="true"/> interface AggregateError extends Error { - errors: any[] + errors: any[]; } interface AggregateErrorConstructor { - new(errors: Iterable<any>, message?: string): AggregateError; + new (errors: Iterable<any>, message?: string): AggregateError; (errors: Iterable<any>, message?: string): AggregateError; readonly prototype: AggregateError; } @@ -44,7 +44,7 @@ interface PromiseConstructor { * @param values An array or iterable of Promises. * @returns A new Promise. */ - any<T>(values: Iterable<T | PromiseLike<T>>): Promise<Awaited<T>> + any<T>(values: Iterable<T | PromiseLike<T>>): Promise<Awaited<T>>; /** * Creates a Promise that can be resolved or rejected using provided functions. |