@eagleoutice/flowr - v2.10.2
    Preparing search index...

    Interface LintQuickFixRemove

    interface LintQuickFixRemove {
        description: string;
        loc: [
            startLine: number,
            startColumn: number,
            endLine: number,
            endColumn: number,
            f?: string,
        ];
        type: "remove";
    }

    Hierarchy (View Summary)

    Hierarchy-Diagram

    UML class diagram of LintQuickFixRemove
    Index

    Properties

    Properties

    description: string

    A short, human-readable description of the quick fix.

    loc: [
        startLine: number,
        startColumn: number,
        endLine: number,
        endColumn: number,
        f?: string,
    ]

    The range of the text that should be replaced.

    type: "remove"

    The type of the quick fix.