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

    how a single function of a package is used in the code

    interface FunctionUsage {
        calls: Map<string, readonly FunctionArgument[]>;
        named: Set<string>;
    }
    Index

    Properties

    Properties

    calls: Map<string, readonly FunctionArgument[]>

    one representative argument list per distinct call shape (drives signature compatibility)

    named: Set<string>

    the union of named argument names across all call sites (drives the lower-bound evidence)