typescript 5.2.0-dev.20230707 → 5.2.0-dev.20230708
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/tsc.js +85 -85
- package/lib/tsserver.js +239 -135
- package/lib/tsserverlibrary.d.ts +5 -1
- package/lib/tsserverlibrary.js +239 -135
- package/lib/typescript.d.ts +4 -0
- package/lib/typescript.js +226 -123
- package/lib/typingsInstaller.js +55 -55
- package/package.json +2 -2
package/lib/typescript.d.ts
CHANGED
|
@@ -7009,6 +7009,10 @@ declare namespace ts {
|
|
|
7009
7009
|
variableElement = "var",
|
|
7010
7010
|
/** Inside function */
|
|
7011
7011
|
localVariableElement = "local var",
|
|
7012
|
+
/** using foo = ... */
|
|
7013
|
+
variableUsingElement = "using",
|
|
7014
|
+
/** await using foo = ... */
|
|
7015
|
+
variableAwaitUsingElement = "await using",
|
|
7012
7016
|
/**
|
|
7013
7017
|
* Inside module and script only
|
|
7014
7018
|
* function f() { }
|