env.d.ts 341 B

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