typescript 5.2.0-dev.20230706 → 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 +118 -105
- package/lib/tsserver.js +272 -155
- package/lib/tsserverlibrary.d.ts +5 -1
- package/lib/tsserverlibrary.js +272 -155
- package/lib/typescript.d.ts +4 -0
- package/lib/typescript.js +259 -143
- package/lib/typingsInstaller.js +63 -66
- package/package.json +2 -2
package/lib/tsserverlibrary.d.ts
CHANGED
|
@@ -3400,7 +3400,7 @@ declare namespace ts {
|
|
|
3400
3400
|
markAsDirty(): void;
|
|
3401
3401
|
getScriptFileNames(): string[];
|
|
3402
3402
|
getLanguageService(): never;
|
|
3403
|
-
|
|
3403
|
+
getHostForAutoImportProvider(): never;
|
|
3404
3404
|
getProjectReferences(): readonly ts.ProjectReference[] | undefined;
|
|
3405
3405
|
getTypeAcquisition(): TypeAcquisition;
|
|
3406
3406
|
}
|
|
@@ -10978,6 +10978,10 @@ declare namespace ts {
|
|
|
10978
10978
|
variableElement = "var",
|
|
10979
10979
|
/** Inside function */
|
|
10980
10980
|
localVariableElement = "local var",
|
|
10981
|
+
/** using foo = ... */
|
|
10982
|
+
variableUsingElement = "using",
|
|
10983
|
+
/** await using foo = ... */
|
|
10984
|
+
variableAwaitUsingElement = "await using",
|
|
10981
10985
|
/**
|
|
10982
10986
|
* Inside module and script only
|
|
10983
10987
|
* function f() { }
|