123456789101112131415161718 |
- /// <reference types="vite/client" />
- declare module '*.vue' {
- import type { DefineComponent } from 'vue';
- // eslint-disable5le-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
- const component: DefineComponent<{}, {}, any>;
- export default component;
- }
- interface ImportMetaEnv {
- readonly VITE_BASE_API: string;
- readonly VITE_IMG_API: string;
- readonly VITE_TEMP_TOKEN: string;
- }
- interface ImportMeta {
- readonly env: ImportMetaEnv;
- }
|