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

    the full view of a package as stored in the signature database

    interface SignaturePackageView {
        base: boolean;
        constants: readonly string[];
        coreVersions?: readonly string[];
        cran: boolean;
        cranPage?: string;
        cranUrl?: string;
        dependencies: readonly SignatureDependencyView[];
        deprecated: readonly string[];
        exportsTotal: number;
        functionCount: number;
        functions: readonly SignatureFunctionView[];
        internalCount: number;
        name: string;
        releaseDate?: string;
        repoUrl?: string;
        resolved?: string;
        version: string;
    }
    Index

    Properties

    base: boolean
    constants: readonly string[]
    coreVersions?: readonly string[]

    for a base package: the R releases it was part of core, ascending

    cran: boolean
    cranPage?: string

    the CRAN package landing page (cran.r-project.org/package=<pkg>), for CRAN packages

    cranUrl?: string

    the CRAN source tarball url, when known

    dependencies: readonly SignatureDependencyView[]
    deprecated: readonly string[]
    exportsTotal: number
    functionCount: number
    functions: readonly SignatureFunctionView[]
    internalCount: number
    name: string
    releaseDate?: string
    repoUrl?: string

    the package's read-only CRAN GitHub mirror (github.com/cran/<pkg>), for CRAN packages

    resolved?: string

    the version the analyzer resolved the package to, if it differs from version

    version: string