blob: d2b470863c90b62ecc1d66077a0c20dafaa40fc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { LatestCommit } from "./commit";
export type TreeEntry = {
name: string,
type: "tree" | "blob",
latest_commit: LatestCommit
};
export type Tree = {
type: "tree" | "blob",
content: string | TreeEntry[]
};
|