@typescript-deploys/pr-build 5.0.0-pr-52703-9 → 5.0.0-pr-52696-39
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/lib.decorators.d.ts +112 -95
- package/lib/tsc.js +640 -164
- package/lib/tsserver.js +665 -184
- package/lib/tsserverlibrary.d.ts +1 -1
- package/lib/tsserverlibrary.js +665 -184
- package/lib/typescript.d.ts +1 -1
- package/lib/typescript.js +665 -184
- package/lib/typingsInstaller.js +21 -5
- package/package.json +1 -1
package/lib/tsserverlibrary.d.ts
CHANGED
|
@@ -10590,6 +10590,7 @@ declare namespace ts {
|
|
|
10590
10590
|
* in the case of InternalSymbolName.ExportEquals and InternalSymbolName.Default.
|
|
10591
10591
|
*/
|
|
10592
10592
|
exportName: string;
|
|
10593
|
+
exportMapKey?: string;
|
|
10593
10594
|
moduleSpecifier?: string;
|
|
10594
10595
|
/** The file name declaring the export's module symbol, if it was an external module */
|
|
10595
10596
|
fileName?: string;
|
|
@@ -10599,7 +10600,6 @@ declare namespace ts {
|
|
|
10599
10600
|
isPackageJsonImport?: true;
|
|
10600
10601
|
}
|
|
10601
10602
|
interface CompletionEntryDataUnresolved extends CompletionEntryDataAutoImport {
|
|
10602
|
-
/** The key in the `ExportMapCache` where the completion entry's `SymbolExportInfo[]` is found */
|
|
10603
10603
|
exportMapKey: string;
|
|
10604
10604
|
}
|
|
10605
10605
|
interface CompletionEntryDataResolved extends CompletionEntryDataAutoImport {
|