15 lines
229 B
TypeScript
15 lines
229 B
TypeScript
export {}
|
|
|
|
declare global {
|
|
function __(text: string): string
|
|
|
|
interface String {
|
|
format(...args: any[]): string
|
|
}
|
|
}
|
|
|
|
declare module 'vue' {
|
|
interface ComponentCustomProperties {
|
|
__: (text: string) => string
|
|
}
|
|
} |