12 lines
228 B
TypeScript
12 lines
228 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_BASE: string
|
|
readonly VITE_USE_MOCK: string
|
|
readonly VITE_ENCRYPTION_KEY: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|