Files
enlight-lms/frontend/src/global.d.ts
2025-08-20 12:06:52 +05:30

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