Interface PlaceRepositoryCommit

Metadata for a repository commit

interface PlaceRepositoryCommit {
    author: string;
    commit: string;
    date: number;
    subject: string;
}

Properties

author: string

Author of the commit

commit: string

Hash associated with the commit

date: number

UTC epoch in seconds of the time the commit was made

subject: string

Commit subject line