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

    what flowR states about one of the functions it defines, in the words a page shows

    interface StatedSignature {
        args?: readonly (readonly [string, readonly string[]])[];
        params?: string;
        pkg: string;
        props: readonly string[];
    }
    Index
    args?: readonly (readonly [string, readonly string[]])[]

    each formal with what it is used for, from FunctionSemantics.call.argument.words; the roles read like the types R has none of

    params?: string

    The formals flowR models, x, ..., or undefined where it declares none (not R's own declaration).

    pkg: string

    the package the definition is for, base when it names none

    props: readonly string[]