typescript 5.2.0-dev.20230707 → 5.2.0-dev.20230709

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.
@@ -3400,7 +3400,7 @@ declare namespace ts {
3400
3400
  markAsDirty(): void;
3401
3401
  getScriptFileNames(): string[];
3402
3402
  getLanguageService(): never;
3403
- getModuleResolutionHostForAutoImportProvider(): never;
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() { }