fix: i18n t prop type

This commit is contained in:
Zack Spear
2024-05-15 15:14:46 -07:00
committed by Zack Spear
parent 81a6a52d9f
commit 4bfdb66d46
27 changed files with 56 additions and 27 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
<script lang="ts" setup>
import { ArrowTopRightOnSquareIcon } from '@heroicons/vue/24/solid';
import { storeToRefs } from 'pinia';
import type { ComposerTranslation } from 'vue-i18n';
import { useServerStore } from '~/store/server';
import type { ServerStateDataAction } from '~/types/server';
@@ -10,7 +11,7 @@ const props = withDefaults(defineProps<{
filterBy?: string[] | undefined;
filterOut?: string[] | undefined;
maxWidth?: boolean;
t: any;
t: ComposerTranslation;
}>(), {
actions: undefined,
filterBy: undefined,