Files
gt-agent-company/types/i18n.d.ts
sexygoat 3c62cc1cd1 first
2026-03-31 18:41:52 +08:00

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 };
}
}