@eagleoutice/flowr - v2.13.1
    Preparing search index...
    interface ProjectQueryResult {
        ".meta": BaseQueryMeta;
        authors?: RAuthorInfo[];
        dependencies?: ProjectDependencyStats;
        encoding?: string;
        files: string[];
        kind?: ProjectKind;
        licenses?: RLicenseElementInfo[];
        name?: string;
        roleCounts?: Record<FileRole, number>;
        rVersion?: string;
        version?: string;
    }

    Hierarchy (View Summary)

    Hierarchy-Diagram

    UML class diagram of ProjectQueryResult
    Index

    Properties

    ".meta": BaseQueryMeta
    authors?: RAuthorInfo[]

    The authors of the project.

    dependencies?: ProjectDependencyStats

    Statistics on the project's declared dependencies, if a DESCRIPTION file is available.

    encoding?: string

    The encoding of the project files.

    files: string[]

    The files considered part of the project.

    The classified kind of the project (e.g. package, script, shiny app).

    licenses?: RLicenseElementInfo[]

    The licenses of the project.

    name?: string

    The name of the project, if available.

    roleCounts?: Record<FileRole, number>

    The counts of files by their role in the project.

    rVersion?: string

    The R version the project targets, e.g. the r_version of an rproject.toml.

    version?: string

    The version of the project, if available.