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

    Interface RAuthorInfo

    Information about an author. See parseRAuthorString for parsing R Authors@R strings, and rAuthorInfoToReadable for printing them.

    interface RAuthorInfo {
        comment?: string[];
        email?: string;
        name: string[];
        orcid?: string;
        roles: AuthorRole[];
    }
    Index

    Properties

    comment?: string[]

    Any additional comments about the author.

    email?: string

    The email of the author, if available.

    name: string[]

    The name (components) of the author.

    orcid?: string

    The ORCID of the author, if available.

    roles: AuthorRole[]

    The roles of the author in the project.