unibest/src/i18n.d.ts

10 lines
254 B
TypeScript
Raw Normal View History

2024-01-29 20:29:16 +08:00
/* eslint-disable no-unused-vars */
export {}
declare module 'vue' {
interface ComponentCustomProperties {
2024-02-21 11:17:03 +08:00
$t: (key: string, opt?: Record<string, any>) => string
$tm: (key: string, opt?: Record<string, any>) => [] | { [p: string]: any }
2024-01-29 20:29:16 +08:00
}
}