vite-env.d.ts 273 B

1234567891011
  1. /// <reference types="vite/client" />
  2. declare module '*.vue' {
  3. import type { DefineComponent } from 'vue'
  4. const component: DefineComponent<Record<string, unknown>, Record<string, unknown>, any>
  5. export default component
  6. }
  7. interface ImportMeta {
  8. fileName: string
  9. }