@typescript-deploys/pr-build 4.7.0-pr-47898-11 → 4.7.0-pr-47904-2
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.esnext.intl.d.ts +4 -1
- package/lib/protocol.d.ts +7 -0
- package/lib/tsc.js +364 -306
- package/lib/tsserver.js +452 -386
- package/lib/tsserverlibrary.d.ts +24 -18
- package/lib/tsserverlibrary.js +452 -386
- package/lib/typescript.d.ts +16 -17
- package/lib/typescript.js +450 -384
- package/lib/typescriptServices.d.ts +16 -17
- package/lib/typescriptServices.js +450 -384
- package/lib/typingsInstaller.js +447 -381
- package/package.json +1 -1
package/lib/lib.esnext.intl.d.ts
CHANGED
package/lib/protocol.d.ts
CHANGED
|
@@ -2657,6 +2657,13 @@ declare namespace ts.server.protocol {
|
|
|
2657
2657
|
readonly jsxAttributeCompletionStyle?: "auto" | "braces" | "none";
|
|
2658
2658
|
readonly displayPartsForJSDoc?: boolean;
|
|
2659
2659
|
readonly generateReturnInDocTemplate?: boolean;
|
|
2660
|
+
readonly includeInlayParameterNameHints?: "none" | "literals" | "all";
|
|
2661
|
+
readonly includeInlayParameterNameHintsWhenArgumentMatchesName?: boolean;
|
|
2662
|
+
readonly includeInlayFunctionParameterTypeHints?: boolean;
|
|
2663
|
+
readonly includeInlayVariableTypeHints?: boolean;
|
|
2664
|
+
readonly includeInlayPropertyDeclarationTypeHints?: boolean;
|
|
2665
|
+
readonly includeInlayFunctionLikeReturnTypeHints?: boolean;
|
|
2666
|
+
readonly includeInlayEnumMemberValueHints?: boolean;
|
|
2660
2667
|
}
|
|
2661
2668
|
interface CompilerOptions {
|
|
2662
2669
|
allowJs?: boolean;
|