mirror of
https://github.com/desktop/desktop
synced 2024-11-05 20:49:32 +00:00
some more docs
This commit is contained in:
parent
b76805fc0a
commit
cdf383edd2
1 changed files with 6 additions and 0 deletions
|
@ -49,8 +49,14 @@ export class Commit {
|
|||
|
||||
/** The commit message without the first line and CR. */
|
||||
public readonly body: string
|
||||
|
||||
/** The commit author's name as stored by Git */
|
||||
public readonly authorName: string
|
||||
|
||||
/** The commit author's email address as stored by Git */
|
||||
public readonly authorEmail: string
|
||||
|
||||
/** The commit timestamp (with timezone information) as stored by Git */
|
||||
public readonly authorDate: Date
|
||||
|
||||
public constructor(sha: string, summary: string, body: string, authorName: string, authorEmail: string, authorDate: Date) {
|
||||
|
|
Loading…
Reference in a new issue