interface ProjectQueryResult {
    ".meta": BaseQueryMeta;
    authors?: RAuthorInfo[];
    encoding?: string;
    files: string[];
    licenses?: RLicenseElementInfo[];
    name?: string;
    roleCounts?: Record<FileRole, number>;
    version?: string;
}

Hierarchy (View Summary)

Hierarchy-Diagram

UML class diagram of ProjectQueryResult

Properties

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

The authors of the project.

encoding?: string

The encoding of the project files.

files: string[]

The files considered part of the project.

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.

version?: string

The version of the project, if available.