From 23b60dc1975db38c280d8a123aff97544d1673e0 Mon Sep 17 00:00:00 2001 From: HelenHuang <LinHuang@pollex.com.tw> Date: 星期四, 09 六月 2022 15:34:21 +0800 Subject: [PATCH] TODO#139890 FAQ 常見問題 1-文案調整 --- PAMapp/node_modules/typescript/lib/lib.esnext.promise.d.ts | 48 ++++++++++++++++++++++++------------------------ 1 files changed, 24 insertions(+), 24 deletions(-) diff --git a/PAMapp/node_modules/typescript/lib/lib.esnext.promise.d.ts b/PAMapp/node_modules/typescript/lib/lib.esnext.promise.d.ts index 4df2c94..6a56c55 100644 --- a/PAMapp/node_modules/typescript/lib/lib.esnext.promise.d.ts +++ b/PAMapp/node_modules/typescript/lib/lib.esnext.promise.d.ts @@ -15,29 +15,29 @@ -/// <reference no-default-lib="true"/> +/// <reference no-default-lib="true"/> -interface AggregateError extends Error { - errors: any[] -} - -interface AggregateErrorConstructor { - new(errors: Iterable<any>, message?: string): AggregateError; - (errors: Iterable<any>, message?: string): AggregateError; - readonly prototype: AggregateError; -} - -declare var AggregateError: AggregateErrorConstructor; - -/** - * Represents the completion of an asynchronous operation - */ -interface PromiseConstructor { - /** - * 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: (T | PromiseLike<T>)[] | Iterable<T | PromiseLike<T>>): Promise<T> -} +interface AggregateError extends Error { + errors: any[] +} + +interface AggregateErrorConstructor { + new(errors: Iterable<any>, message?: string): AggregateError; + (errors: Iterable<any>, message?: string): AggregateError; + readonly prototype: AggregateError; +} + +declare var AggregateError: AggregateErrorConstructor; + +/** + * Represents the completion of an asynchronous operation + */ +interface PromiseConstructor { + /** + * 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: (T | PromiseLike<T>)[] | Iterable<T | PromiseLike<T>>): Promise<T> +} -- Gitblit v1.8.0