env.d.ts 444 B

123456789101112131415
  1. /// <reference types="vite/client" />
  2. declare module '*.vue' {
  3. import type {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 namespace NodeJS {
  9. interface ProcessEnv {
  10. readonly NODE_ENV: 'development' | 'production' | 'test';
  11. readonly IS_E2E: 'true' | undefined;
  12. }
  13. }