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

    Returned by the DEPRECATED_FUNCTIONS linting rule, when a deprecated argument is detected. Provided for convenience to differentiate between DeprecatedArgumentResult and DeprecatedFunctionResult

    interface DeprecatedArgumentResult {
        arg: string | number;
        certainty: LintingResultCertainty;
        function: Identifier;
        involvedId: NodeId | NodeId[] | undefined;
        loc: [
            startLine: number,
            startColumn: number,
            endLine: number,
            endColumn: number,
            f?: string,
        ];
        quickFix?: LintQuickFix[];
        replacedBy?: string;
        sinceVersion?: Range;
        state?: DeprecationState;
        type: "deprecated-argument";
    }

    Hierarchy (View Summary)

    Index
    arg: string | number

    The name of the deprecated argument. Index in case of unnamed argument

    The certainty of the linting result.

    function: Identifier

    The function affected by the deprecation

    involvedId: NodeId | NodeId[] | undefined

    The node ID or IDs involved in this linting result, if applicable.

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

    The source location where this linting result occurs

    quickFix?: LintQuickFix[]

    If available, what to do to fix the linting result.

    replacedBy?: string

    The suggested replacement for the deprecated argument or function

    sinceVersion?: Range

    Since which package version this argument or function is deprecated

    Lifecycle State DeprecationState

    type: "deprecated-argument"