11 lines
168 B
TypeScript
11 lines
168 B
TypeScript
export {}
|
|
|
|
declare global {
|
|
function __(text: string): string
|
|
}
|
|
|
|
declare module 'vue' {
|
|
interface ComponentCustomProperties {
|
|
__: (text: string) => string
|
|
}
|
|
} |