10 lines
254 B
TypeScript
10 lines
254 B
TypeScript
/* eslint-disable no-unused-vars */
|
|
export {}
|
|
|
|
declare module 'vue' {
|
|
interface ComponentCustomProperties {
|
|
$t: (key: string, opt?: Record<string, any>) => string
|
|
$tm: (key: string, opt?: Record<string, any>) => [] | { [p: string]: any }
|
|
}
|
|
}
|