aboutsummaryrefslogtreecommitdiff
path: root/packages/server/src/git/commit.ts
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2021-07-06 15:37:35 +0200
committerHampusM <hampus@hampusmat.com>2021-07-06 15:37:35 +0200
commit7b48039aa475b8c0b52b019f10fad66c7842d08b (patch)
treec3b0c1666ce74f0fb0b0f43a924a476b6164934a /packages/server/src/git/commit.ts
parent10f0154f1f46881123ef3418beb0eced48bfb4b9 (diff)
API uses shared types
Diffstat (limited to 'packages/server/src/git/commit.ts')
-rw-r--r--packages/server/src/git/commit.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/server/src/git/commit.ts b/packages/server/src/git/commit.ts
index 5d86eb4..4b3e44b 100644
--- a/packages/server/src/git/commit.ts
+++ b/packages/server/src/git/commit.ts
@@ -5,9 +5,9 @@ import { Repository } from "./repository";
import { Tree } from "./tree";
export type CommitSummary = {
- id: string | null,
- message: string | null,
- date: number | null
+ id: string,
+ message: string,
+ date: number
}
type DiffStats = {