18 lines
426 B
TypeScript
18 lines
426 B
TypeScript
|
|
/// <reference types="vite/client" />
|
||
|
|
|
||
|
|
interface ImportMetaEnv {
|
||
|
|
readonly VITE_API_BASE_URL: string
|
||
|
|
readonly VITE_WS_BASE_URL: string
|
||
|
|
readonly VITE_STREAM_URL: string
|
||
|
|
readonly VITE_UPLOAD_URL: string
|
||
|
|
readonly VITE_APP_NAME: string
|
||
|
|
readonly VITE_DEBUG: string
|
||
|
|
readonly VITE_USE_MSW: string
|
||
|
|
readonly VITE_FCM_VAPID_KEY: string
|
||
|
|
// more env variables...
|
||
|
|
}
|
||
|
|
|
||
|
|
interface ImportMeta {
|
||
|
|
readonly env: ImportMetaEnv
|
||
|
|
}
|