interface Commit {
    author: repo.refsChanged.Author;
    authorTimestamp: number;
    committer: repo.refsChanged.Author;
    committerTimestamp: number;
    displayId: string;
    id: string;
    message: string;
    parents: Parent[];
}

Properties

authorTimestamp: number
committerTimestamp: number
displayId: string
id: string
message: string
parents: Parent[]