Files
delta-force-guide-web/src/vite-env.d.ts
T

9 lines
209 B
TypeScript
Raw Normal View History

2026-04-02 09:23:57 +08:00
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_REDUX_STORAGE: "local" | "session"
2026-04-06 17:57:25 +08:00
readonly VITE_API_BASE_URL: string
2026-04-02 09:23:57 +08:00
}
interface ImportMeta {
readonly env: ImportMetaEnv
}