Skip to content

Commit

Permalink
Add model types
Browse files Browse the repository at this point in the history
  • Loading branch information
hunter-richardson committed Jun 20, 2024
1 parent 96bf2e5 commit 29d340c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/facies/inflectere.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
import Cocutor from '../miscella/cocutor';
import type { ModelRef } from 'vue';
const eventus = defineModel<Eventus>('eventus');
const verbum = defineModel<Verbum>('verbum');
const eventus: ModelRef<Eventus | undefined, string> = defineModel<Eventus>('eventus');
const verbum: ModelRef<Verbum | undefined, string> = defineModel<Verbum>('verbum');
const lingua: string | undefined = Cocutor.se.ipse().edatur('lingua');
const categoria: string = eventus.value?.categoria ?? '';
Expand Down

0 comments on commit 29d340c

Please sign in to comment.