core/env.d.ts

10 lines
155 B
TypeScript
Raw Normal View History

2025-05-16 06:23:48 +00:00
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_API_URL: string
}
2025-05-16 06:23:48 +00:00
interface ImportMeta {
readonly env: ImportMetaEnv
}