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

    Arguments for IndentationRequest request.

    interface IndentationRequestArgs {
        file: string;
        line: number;
        offset: number;
        options?: ChangePropertyTypes<
            tsc.EditorSettings,
            { indentStyle: tsc.IndentStyle
            | tsc.server.protocol.IndentStyle },
        >;
        projectFileName?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    file: string

    The file for the request (absolute pathname required).

    line: number

    The line number for the request (1-based).

    offset: number

    The character offset (on the line) for the request (1-based).

    options?: ChangePropertyTypes<
        tsc.EditorSettings,
        { indentStyle: tsc.IndentStyle
        | tsc.server.protocol.IndentStyle },
    >

    An optional set of settings to be used when computing indentation. If argument is omitted - then it will use settings for file that were previously set via 'configure' request or global settings.

    projectFileName?: string