Skip to content

Commit

Permalink
fix: typing of component
Browse files Browse the repository at this point in the history
  • Loading branch information
tada5hi committed Oct 29, 2024
1 parent dae36b9 commit 0e726de
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<script lang="ts">
import type { URLQueryRecord } from '@dnpm-dip/core';
import { type PropType, defineComponent } from 'vue';
import { BTable } from 'bootstrap-vue-next';
import type { QueryTherapyResponse } from '../../domains';
import type { QueryTherapyResponseByVariant } from '../../domains';
import MTherapyResponseDistributionBar from './MTherapyResponseDistributionBar.vue';
export default defineComponent({
Expand All @@ -12,7 +11,7 @@ export default defineComponent({
},
props: {
items: {
type: Object as PropType<QueryTherapyResponse[]>,
type: Object as PropType<QueryTherapyResponseByVariant[]>,
required: true,
},
busy: {
Expand Down

0 comments on commit 0e726de

Please sign in to comment.