Interface CommitAuthor

Represents a commit author: name & email.

interface CommitAuthor {
    email: string;
    name: string;
}

Properties

Properties

email: string
name: string

Generated using TypeDoc