env.d.ts 263 B

1234567891011121314
  1. /// <reference types="vite/client" />
  2. declare module '*.vue' {
  3. import { DefineComponent } from 'vue'
  4. const component: DefineComponent<{}, {}, any>
  5. export default component
  6. }
  7. declare global {
  8. interface ImportMeta {
  9. readonly env: ImportMetaEnv
  10. }
  11. }