summaryrefslogtreecommitdiff
path: root/cli/tsc/dts/lib.es2015.collection.d.ts
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-07-03 18:36:35 -0400
committerGitHub <noreply@github.com>2023-07-04 00:36:35 +0200
commit7a7e0748e3ad6d178f5a351bbb5c8ed896f7f833 (patch)
treede77ac9b14bbec979b6fba456901f99de56fa5d3 /cli/tsc/dts/lib.es2015.collection.d.ts
parent208e65d33a6eed09404ecb0bc6858ce95c754f81 (diff)
feat: upgrade to TypeScript 5.1.6 (#19695)
Integrates https://github.com/denoland/TypeScript/pull/7
Diffstat (limited to 'cli/tsc/dts/lib.es2015.collection.d.ts')
-rw-r--r--cli/tsc/dts/lib.es2015.collection.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tsc/dts/lib.es2015.collection.d.ts b/cli/tsc/dts/lib.es2015.collection.d.ts
index 8528c7725..b97201ae4 100644
--- a/cli/tsc/dts/lib.es2015.collection.d.ts
+++ b/cli/tsc/dts/lib.es2015.collection.d.ts
@@ -82,7 +82,7 @@ interface WeakMap<K extends object, V> {
}
interface WeakMapConstructor {
- new <K extends object = object, V = any>(entries?: readonly [K, V][] | null): WeakMap<K, V>;
+ new <K extends object = object, V = any>(entries?: readonly (readonly [K, V])[] | null): WeakMap<K, V>;
readonly prototype: WeakMap<object, any>;
}
declare var WeakMap: WeakMapConstructor;