Tucker McKnight
rough draft of new repo data type
1
1
type Repository = {
name: string,
description?: string,
cloneUrl: string,
branches: Array<{
name: string,
description?: string,
head: string,
isDefault: boolean,
}>,
tags: Array<{
name: string,
sha: string,
}>,
commits: Map<string, {
message: string,
author: string,
date: Date,
parent: string,
}>,
}