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

    A linting result for a single linting rule match.

    interface UndefinedSymbolResult {
        availableInPackages?: readonly string[];
        certainty: LintingResultCertainty;
        involvedId: NodeId | NodeId[] | undefined;
        kind: UndefinedSymbolKind;
        loc: [
            startLine: number,
            startColumn: number,
            endLine: number,
            endColumn: number,
            f?: string,
        ];
        mayBeProvidedByUnresolvedLibrary?: boolean;
        name: string;
        quickFix?: LintQuickFix[];
    }

    Hierarchy (View Summary)

    Index
    availableInPackages?: readonly string[]

    packages that export this name - a hint that a library()/:: might be missing (empty if none known)

    The certainty of the linting result.

    involvedId: NodeId | NodeId[] | undefined

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

    whether the name is used as a function call or as a variable read

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

    The source location where this linting result occurs

    mayBeProvidedByUnresolvedLibrary?: boolean

    an unresolved library() is in scope that could define this name; treat as low-confidence

    name: string

    the name that could not be resolved

    quickFix?: LintQuickFix[]

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