env.d.ts 358 B

1234567891011121314
  1. /// <reference types="vite/client" />
  2. declare module '*.vue' {
  3. import { DefineComponent } from 'vue'
  4. // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
  5. const component: DefineComponent<{}, {}, any>
  6. export default component
  7. }
  8. declare global {
  9. interface ImportMeta {
  10. env: Record<string, unknown>
  11. }
  12. }