typescript 5.3.0-dev.20230912 → 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.
- package/lib/tsc.js +227 -63
- package/lib/tsserver.js +248 -71
- package/lib/typescript.d.ts +5 -2
- package/lib/typescript.js +248 -72
- package/lib/typingsInstaller.js +44 -17
- package/package.json +2 -2
package/lib/typescript.d.ts
CHANGED
|
@@ -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?:
|
|
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:
|
|
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 {
|