blob: a32515e5e5ac40b91c76181e6e4122c8e6fe9575 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { LatestCommit } from "./commit";
export interface BranchSummary {
id: string,
name: string
}
export interface Branch extends BranchSummary {
latest_commit: LatestCommit
}
|