Created
December 19, 2015 17:00
-
-
Save vgaltes/90748124970e5f17159b to your computer and use it in GitHub Desktop.
Types from previous article
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type CommitInfo = {Hash : string; Author : string; TimeStamp : DateTime; Message : string} | |
type CommittedFile = {LinesAdded: int option; LinesDeleted: int option; FileName: string} | |
type Commit = {CommitInfo: CommitInfo; Files: CommittedFile[]} | |
val totalCommits : Commit [] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment