From 3242e2718fdbbdb6d1855c0f694e816f9af3f09c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Wed, 3 Jul 2024 15:09:54 +0100 Subject: feat: Upgrade to TypeScript 5.5.2 (#24326) This commit upgrades TypeScript to 5.5.2. https://devblogs.microsoft.com/typescript/announcing-typescript-5-5/ --- cli/tsc/dts/lib.webworker.iterable.d.ts | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'cli/tsc/dts/lib.webworker.iterable.d.ts') diff --git a/cli/tsc/dts/lib.webworker.iterable.d.ts b/cli/tsc/dts/lib.webworker.iterable.d.ts index 54f5528b2..4f53ad5e0 100644 --- a/cli/tsc/dts/lib.webworker.iterable.d.ts +++ b/cli/tsc/dts/lib.webworker.iterable.d.ts @@ -20,6 +20,11 @@ and limitations under the License. /// Worker Iterable APIs ///////////////////////////// +interface AbortSignal { + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/any_static) */ + any(signals: Iterable): AbortSignal; +} + interface CSSNumericArray { [Symbol.iterator](): IterableIterator; entries(): IterableIterator<[number, CSSNumericValue]>; -- cgit v1.2.3