aboutsummaryrefslogtreecommitdiff
path: root/packages/client/src/components/CommitPatch.vue
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2021-07-06 14:55:58 +0200
committerHampusM <hampus@hampusmat.com>2021-07-06 14:55:58 +0200
commitc2dc7906e47a05cecc6350fd6a3d6f6f955a3423 (patch)
tree0f3895eb00783943a13d27235dfd88bcda5a844c /packages/client/src/components/CommitPatch.vue
parent49e6ae50447130ba6e2efd2b561f1b1dcc033099 (diff)
Frontend uses shared types
Diffstat (limited to 'packages/client/src/components/CommitPatch.vue')
-rw-r--r--packages/client/src/components/CommitPatch.vue20
1 files changed, 1 insertions, 19 deletions
diff --git a/packages/client/src/components/CommitPatch.vue b/packages/client/src/components/CommitPatch.vue
index a51a6cb..dca886f 100644
--- a/packages/client/src/components/CommitPatch.vue
+++ b/packages/client/src/components/CommitPatch.vue
@@ -2,25 +2,7 @@
import { defineComponent, h, PropType, VNode } from "vue";
import hljs from "highlight.js";
import hljs_languages from "../util/hljs-languages";
-
-type Hunk = {
- new_start: number,
- new_lines_cnt: number,
- new_lines: number[],
- old_start: number,
- old_lines_cnt: number,
- deleted_lines: number[],
- hunk: string
-}
-
-type Patch = {
- additions: number,
- deletions: number,
- from: string,
- to: string,
- too_large: boolean,
- hunks: Hunk[]
-}
+import { Patch } from "shared_types";
export default defineComponent({
name: "CommitPatch",