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

    Result of the DEPRECATED_FUNCTIONS linting rule See also the specializations DeprecatedFunctionResult and DeprecatedArgumentResult

    interface DeprecatedFunctionResultBase {
        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;
    }

    Hierarchy (View Summary)

    Index

    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