fix over 30 ts errors

This commit is contained in:
2023-03-25 00:36:42 +01:00
parent 28295e69d5
commit b89d041064
6 changed files with 22 additions and 9 deletions
+2 -1
View File
@@ -24,7 +24,7 @@
<script lang="ts">
import {defineComponent} from "vue";
import type {PropType} from "vue";
import type {Guild} from "@/classes/Guild";
import {Guild} from "@/classes/Guild";
import {version} from "../../package.json"
@@ -38,6 +38,7 @@ export default defineComponent({
props: {
guild: {
type: Object as PropType<Guild>,
default: () => new Guild(1, 0) as Guild,
},
}
});