Branch

commit first line goes here

Tue Oct 21 2025

Tucker McKnight <tmcknight@instructure.com>

rough draft of new repo data type

929902548271025085c41d2271bccd17fdbd689f

Side-by-side
Stacked
src/dataTypes.ts:1
Before
1
After
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
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,
  }>,
}