Files
WAI_Project_VUE/env.d.ts

11 lines
184 B
TypeScript
Raw Permalink Normal View History

2025-11-24 23:24:06 +08:00
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_NAME: string;
readonly VITE_TIMEOUT: number;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}