Skip to content

Commit

Permalink
fix(types): accept vue-i18n instance with any strings
Browse files Browse the repository at this point in the history
fixes #16848
  • Loading branch information
KaelWD committed Mar 13, 2023
1 parent 2e4a537 commit 34f13df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/locale/adapters/vue-i18n.ts
Expand Up @@ -6,7 +6,7 @@ import type { LocaleInstance, LocaleMessages, LocaleOptions } from '@/composable
import type { I18n, useI18n } from 'vue-i18n'

type VueI18nAdapterParams = {
i18n: I18n<{}, {}, {}, string, false>
i18n: I18n<any, {}, {}, string, false>
useI18n: typeof useI18n
}

Expand Down

0 comments on commit 34f13df

Please sign in to comment.