mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 19:41:44 +08:00
24 lines
659 B
TypeScript
24 lines
659 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_BASE_URL: string;
|
|
readonly VITE_UPLOAD_URL: string;
|
|
readonly VITE_PROD: boolean;
|
|
readonly VITE_DEV: boolean;
|
|
readonly VITE_APP_CACHE_PREFIX: string;
|
|
readonly VITE_PORT: number;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|