Merge InlayHintOptions into UserPreferences (#47729)

* get rid of inlayhintoptions

* update userpreferences in protocol
This commit is contained in:
Gabriela Araujo Britto
2022-02-15 19:56:16 -03:00
committed by GitHub
parent 0798faf596
commit d0e1255d18
11 changed files with 47 additions and 39 deletions

View File

@@ -3420,6 +3420,14 @@ namespace ts.server.protocol {
readonly displayPartsForJSDoc?: boolean;
readonly generateReturnInDocTemplate?: boolean;
readonly includeInlayParameterNameHints?: "none" | "literals" | "all";
readonly includeInlayParameterNameHintsWhenArgumentMatchesName?: boolean;
readonly includeInlayFunctionParameterTypeHints?: boolean,
readonly includeInlayVariableTypeHints?: boolean;
readonly includeInlayPropertyDeclarationTypeHints?: boolean;
readonly includeInlayFunctionLikeReturnTypeHints?: boolean;
readonly includeInlayEnumMemberValueHints?: boolean;
}
export interface CompilerOptions {