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

    one version of a package in a scenario: when it was released, which functions (with which parameters) it exports, and what it depends on

    interface ScenarioVersion {
        cran?: boolean;
        date?: string;
        deps?: Readonly<Record<string, string>>;
        fns?: Readonly<Record<string, readonly string[]>>;
        s3Classes?: readonly string[];
        s4Classes?: readonly string[];
        suggests?: Readonly<Record<string, string>>;
    }
    Index
    cran?: boolean
    date?: string

    release date YYYY-MM-DD (drives the date cutoff and version ordering)

    deps?: Readonly<Record<string, string>>

    declared dependency to its version constraint (e.g. >= 1.0.0), recorded as an Imports

    fns?: Readonly<Record<string, readonly string[]>>

    exported function to its parameter names (use '...' for a variadic)

    s3Classes?: readonly string[]

    S3 classes this version OWNS (must also be an exported function name in fns); see FnProp.S3Owner

    s4Classes?: readonly string[]

    S4 classes this version OWNS (exported via exportClasses, need not be a function); see FnProp.S4Owner

    suggests?: Readonly<Record<string, string>>

    like deps, but recorded as a Suggests, which a load does not have to satisfy