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

    Instances of this interface specify errorcodes on a specific location in a sourcefile.

    interface CodeFixRequestArgs {
        endLine: number;
        endOffset: number;
        errorCodes: readonly number[];
        file: string;
        projectFileName?: string;
        startLine: number;
        startOffset: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    endLine: number

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

    endOffset: number

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

    errorCodes: readonly number[]

    Errorcodes we want to get the fixes for.

    file: string

    The file for the request (absolute pathname required).

    projectFileName?: string
    startLine: number

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

    startOffset: number

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