Interface Commit

Represent a commit.

interface Commit {
    author: CommitAuthor;
    commit: string;
    date: string;
    merged: null | CommitMergeResult;
    message: string[];
}

Properties

author: CommitAuthor
commit: string
date: string
merged: null | CommitMergeResult

If null, it means the commit is not a merge commit.

message: string[]

Generated using TypeDoc