12 lines
276 B
TypeScript
12 lines
276 B
TypeScript
// src/shims-vue-i18n.d.ts
|
|
|
|
import { I18n } from 'vue-i18n'
|
|
|
|
// Augment the ComponentCustomProperties interface in 'vue'
|
|
declare module '@vue/runtime-core' {
|
|
interface ComponentCustomProperties {
|
|
// Defines the $t property and its type
|
|
$t: I18n['global']['t']
|
|
}
|
|
}
|