@typescript-deploys/pr-build 5.2.0-pr-55052-3 → 5.2.0-pr-52095-16
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 +174 -170
- package/lib/tsserver.js +343 -231
- package/lib/tsserverlibrary.d.ts +14 -3
- package/lib/tsserverlibrary.js +342 -232
- package/lib/typescript.d.ts +8 -2
- package/lib/typescript.js +324 -228
- package/lib/typingsInstaller.js +13 -9
- package/package.json +2 -2
package/lib/typescript.d.ts
CHANGED
|
@@ -1086,7 +1086,7 @@ declare namespace ts {
|
|
|
1086
1086
|
readonly asteriskToken?: AsteriskToken;
|
|
1087
1087
|
readonly expression?: Expression;
|
|
1088
1088
|
}
|
|
1089
|
-
interface SyntheticExpression extends
|
|
1089
|
+
interface SyntheticExpression extends Expression {
|
|
1090
1090
|
readonly kind: SyntaxKind.SyntheticExpression;
|
|
1091
1091
|
readonly isSpread: boolean;
|
|
1092
1092
|
readonly type: Type;
|
|
@@ -4347,6 +4347,7 @@ declare namespace ts {
|
|
|
4347
4347
|
readonly includeInlayPropertyDeclarationTypeHints?: boolean;
|
|
4348
4348
|
readonly includeInlayFunctionLikeReturnTypeHints?: boolean;
|
|
4349
4349
|
readonly includeInlayEnumMemberValueHints?: boolean;
|
|
4350
|
+
readonly interactiveInlayHints?: boolean;
|
|
4350
4351
|
readonly allowRenameOfImportPath?: boolean;
|
|
4351
4352
|
readonly autoImportFileExcludePatterns?: string[];
|
|
4352
4353
|
readonly organizeImportsIgnoreCase?: "auto" | boolean;
|
|
@@ -6413,12 +6414,17 @@ declare namespace ts {
|
|
|
6413
6414
|
Enum = "Enum"
|
|
6414
6415
|
}
|
|
6415
6416
|
interface InlayHint {
|
|
6416
|
-
text: string;
|
|
6417
|
+
text: string | InlayHintDisplayPart[];
|
|
6417
6418
|
position: number;
|
|
6418
6419
|
kind: InlayHintKind;
|
|
6419
6420
|
whitespaceBefore?: boolean;
|
|
6420
6421
|
whitespaceAfter?: boolean;
|
|
6421
6422
|
}
|
|
6423
|
+
interface InlayHintDisplayPart {
|
|
6424
|
+
text: string;
|
|
6425
|
+
span?: TextSpan;
|
|
6426
|
+
file?: string;
|
|
6427
|
+
}
|
|
6422
6428
|
interface TodoCommentDescriptor {
|
|
6423
6429
|
text: string;
|
|
6424
6430
|
priority: number;
|