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

    Answers "where does this function come from?" for a bare name: which packages export it (from the loaded signature database(s), optionally restricted to packages), the signature/details of each hit, and whether flowR itself carries a built-in definition for it. The built-in part is answered regardless of the database result, so a primitive with no package at all (if, [) still gets a real answer.

    interface FunctionInfoQuery {
        name: string;
        packages?: readonly string[];
        type: "function-info";
    }

    Hierarchy (View Summary)

    Index
    name: string

    the bare function/symbol name to look up

    packages?: readonly string[]

    restrict the package list to these names; every exporting package when omitted

    type: "function-info"

    used to select the query type :)