Files
douyin/app/src/vite-env.d.ts
T
2025-09-30 15:00:32 +08:00

17 lines
383 B
TypeScript

/// <reference types="vite/client" />
declare module '*.vue' {
import type { DefineComponent } from 'vue';
const component: DefineComponent<{}, {}, any>;
export default component;
}
interface ImportMetaEnv extends Readonly<Record<string, string>> {
readonly VITE_BASE_URL: string;
readonly VITE_API_URL: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}