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
+6
View File
@@ -50,9 +50,15 @@ export default defineComponent({
props: {
missive: {
type: Object as PropType<Quest>,
default() {
return {} as Quest;
},
},
adventurers: {
type: Object as PropType<{[key: string]: Adventurer}>,
default() {
return {} as {[key: string]: Adventurer};
},
},
},
data() {