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

    The resolved identifiers of a singular package version

    interface LibraryExports {
        cran: boolean;
        cranUrl?: string;
        deprecated: readonly string[];
        exported: readonly string[];
        internal: readonly string[];
        locations?: ReadonlyMap<string, SigDefinitionLocation>;
        s3Classes: readonly string[];
        s4Classes: readonly string[];
        version: string;
    }
    Index

    Properties

    cran: boolean

    flag indicating whether this is a package available on CRAN

    cranUrl?: string

    package documentation url base in case this package is found at a different endpoint

    deprecated: readonly string[]
    exported: readonly string[]
    internal: readonly string[]

    defined-but-not-exported identifiers (only available when internal names are stored, which we usually avoid in the db)

    locations?: ReadonlyMap<string, SigDefinitionLocation>

    definition location per identifier, if the database carries them

    s3Classes: readonly string[]

    S3 classes this package version OWNS: it registers at least one S3 method for the class (its NAMESPACE's S3method(generic, class)) AND exports a same-named constructor function. See FnProp.S3Owner.

    s4Classes: readonly string[]

    S4 classes this package version OWNS: it exports the class via its NAMESPACE exportClasses(). See FnProp.S4Owner.

    version: string

    R version identifier (see RVersion.parse)