/
githubmirror
/
TypeScript
Обзор
Документация
Войти
/
githubmirror
/
TypeScript
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/lib/es2021.promise.d.ts
30 строк
1 KB
Jake Bailey
dprint the codebase (#54820)
17 авг 2023, 00:26
Не верифицирован
17 авг 2023, 00:26
5e8c261
Код
Авторство
О чём код?
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 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>>; }