diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-09-09 14:03:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-09 15:03:21 -0400 |
commit | c228adc27d5b605286d3a9ca924e657308aebb74 (patch) | |
tree | fdc0e814bdaeceb231565ee8e0324c7447c39212 /cli/tsc/dts/lib.es2023.collection.d.ts | |
parent | f75a17521df053218c0c2b5fb93c5354f9c8f274 (diff) |
feat: TypeScript 5.2 (#20425)
Without `using` declarations or decorator metadata (waiting for that in
v8).
Diffstat (limited to 'cli/tsc/dts/lib.es2023.collection.d.ts')
-rw-r--r-- | cli/tsc/dts/lib.es2023.collection.d.ts | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/cli/tsc/dts/lib.es2023.collection.d.ts b/cli/tsc/dts/lib.es2023.collection.d.ts new file mode 100644 index 000000000..fd4b57843 --- /dev/null +++ b/cli/tsc/dts/lib.es2023.collection.d.ts @@ -0,0 +1,21 @@ +/*! ***************************************************************************** +Copyright (c) Microsoft Corporation. All rights reserved. +Licensed under the Apache License, Version 2.0 (the "License"); you may not use +this file except in compliance with the License. You may obtain a copy of the +License at http://www.apache.org/licenses/LICENSE-2.0 + +THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED +WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, +MERCHANTABLITY OR NON-INFRINGEMENT. + +See the Apache Version 2.0 License for specific language governing permissions +and limitations under the License. +***************************************************************************** */ + + +/// <reference no-default-lib="true"/> + +interface WeakKeyTypes { + symbol: symbol; +} |