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

    either returns all function definitions alongside what they and their formals do, or just those matching the filters

    interface InspectFnPropsQuery {
        filter?: readonly SlicingCriterion[];
        formals?: readonly string[];
        maxDepth?: number;
        only?: "function" | "arguments";
        props?: readonly string[];
        type: "inspect-fn-props";
    }

    Hierarchy (View Summary)

    Index
    filter?: readonly SlicingCriterion[]
    formals?: readonly string[]

    keep only the formals written as one of these names

    maxDepth?: number

    how far a value is followed back through names and calls (default DefaultDepth)

    only?: "function" | "arguments"

    infer only what the formals do (arguments) or only what the function does (function); both by default

    props?: readonly string[]

    keep only these properties, named as the ArgProp/CallProp members they are

    type: "inspect-fn-props"

    used to select the query type :)