shims-vue.d.ts 197 B

123456
  1. /* eslint-disable @typescript-eslint/ban-types */
  2. declare module '*.vue' {
  3. import type { DefineComponent } from 'vue'
  4. const component: DefineComponent<{}, {}, any>
  5. export default component
  6. }