2022-06-03 22:04:01 +08:00

20 lines
499 B
TypeScript

// / <reference types="vite/client" />
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;
}