@servicenow/sdk - v4.4.1
    Preparing search index...

    Manipulation settings.

    interface ManipulationSettings {
        indentationText: IndentationText;
        insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces: boolean;
        newLineKind: tsc.NewLineKind;
        quoteKind: QuoteKind;
        usePrefixAndSuffixTextForRename: boolean;
        useTrailingCommas: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    indentationText: IndentationText

    Indentation text

    insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces: boolean

    Whether to insert a space after opening and before closing non-empty braces.

    ex. import { Item } from "./Item"; or import {Item} from "./Item";

    Defaults to true.

    newLineKind: tsc.NewLineKind

    New line kind

    quoteKind: QuoteKind

    Quote type used for string literals.

    usePrefixAndSuffixTextForRename: boolean

    Whether to enable renaming shorthand property assignments, binding elements, and import & export specifiers without changing behaviour.

    Defaults to true. This setting is only available when using TypeScript 3.4+.

    useTrailingCommas: boolean

    Whether to use trailing commas when inserting or removing nodes.