cool-admin-vue/env.d.ts

11 lines
184 B
TypeScript
Raw Normal View History

2024-08-08 17:44:07 +08:00
/// <reference types="vite/client" />
2023-09-28 13:50:15 +08:00
interface ImportMetaEnv {
readonly VITE_NAME: string;
readonly VITE_TIMEOUT: number;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}