i18n.d.ts 200 B

12345678910
  1. /* eslint-disable no-unused-vars */
  2. export {}
  3. declare module 'vue' {
  4. interface ComponentCustomProperties {
  5. $t: (key: string) => string
  6. $tm: (key: string) => [] | { [p: string]: any }
  7. }
  8. }