diff options
author | HampusM <hampus@hampusmat.com> | 2021-08-02 17:26:29 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-08-02 17:26:29 +0200 |
commit | 904bd1731447796cf1a2bd992c89f889f2a6263a (patch) | |
tree | c746534149722905792e8a1b0059568ed9cc1c7c /packages/api/src/branch.d.ts | |
parent | 8feb65c5467cc3ad48270183113a121c4a9f86ca (diff) |
Renamed the shared types package to api
Diffstat (limited to 'packages/api/src/branch.d.ts')
-rw-r--r-- | packages/api/src/branch.d.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/packages/api/src/branch.d.ts b/packages/api/src/branch.d.ts new file mode 100644 index 0000000..a32515e --- /dev/null +++ b/packages/api/src/branch.d.ts @@ -0,0 +1,10 @@ +import { LatestCommit } from "./commit"; + +export interface BranchSummary { + id: string, + name: string +} + +export interface Branch extends BranchSummary { + latest_commit: LatestCommit +}
\ No newline at end of file |