interface InlayHintsOptions {
    includeInlayEnumMemberValueHints?: boolean;
    includeInlayFunctionLikeReturnTypeHints?: boolean;
    includeInlayFunctionParameterTypeHints?: boolean;
    includeInlayParameterNameHints?: "all" | "none" | "literals";
    includeInlayParameterNameHintsWhenArgumentMatchesName?: boolean;
    includeInlayPropertyDeclarationTypeHints?: boolean;
    includeInlayVariableTypeHints?: boolean;
}

Properties

includeInlayEnumMemberValueHints?: boolean
includeInlayFunctionLikeReturnTypeHints?: boolean
includeInlayFunctionParameterTypeHints?: boolean
includeInlayParameterNameHints?: "all" | "none" | "literals"
includeInlayParameterNameHintsWhenArgumentMatchesName?: boolean
includeInlayPropertyDeclarationTypeHints?: boolean
includeInlayVariableTypeHints?: boolean