9 lines
221 B
TypeScript
9 lines
221 B
TypeScript
export {};
|
|
|
|
declare module 'vue' {
|
|
interface ComponentCustomProperties {
|
|
$t: (key: string, opt?: Record<string, any>) => string;
|
|
$tm: (key: string, opt?: Record<string, any>) => [] | { [p: string]: any };
|
|
}
|
|
}
|