typescript 5.3.0-dev.20230913 → 5.3.0-dev.20230914

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.
@@ -11040,7 +11040,7 @@ declare namespace ts {
11040
11040
  * in the case of InternalSymbolName.ExportEquals and InternalSymbolName.Default.
11041
11041
  */
11042
11042
  exportName: string;
11043
- exportMapKey?: string;
11043
+ exportMapKey?: ExportMapInfoKey;
11044
11044
  moduleSpecifier?: string;
11045
11045
  /** The file name declaring the export's module symbol, if it was an external module */
11046
11046
  fileName?: string;
@@ -11050,7 +11050,7 @@ declare namespace ts {
11050
11050
  isPackageJsonImport?: true;
11051
11051
  }
11052
11052
  interface CompletionEntryDataUnresolved extends CompletionEntryDataAutoImport {
11053
- exportMapKey: string;
11053
+ exportMapKey: ExportMapInfoKey;
11054
11054
  }
11055
11055
  interface CompletionEntryDataResolved extends CompletionEntryDataAutoImport {
11056
11056
  moduleSpecifier: string;
@@ -11365,6 +11365,9 @@ declare namespace ts {
11365
11365
  span: TextSpan;
11366
11366
  preferences: UserPreferences;
11367
11367
  }
11368
+ type ExportMapInfoKey = string & {
11369
+ __exportInfoKey: void;
11370
+ };
11368
11371
  /** The classifier is used for syntactic highlighting in editors via the TSServer */
11369
11372
  function createClassifier(): Classifier;
11370
11373
  interface DocumentHighlights {