// / declare module '*.vue' { import { DefineComponent } from 'vue'; // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types const component: DefineComponent<{}, {}, any>; export default component; } interface ImportMetaEnv { readonly VITE_ENV: string; readonly VITE_APP_TITLE: string; readonly VITE_API_URL: string; readonly VITE_UPLOAD_URL: string; } interface ImportMeta { readonly env: ImportMetaEnv; }