12 lines
284 B
TypeScript
12 lines
284 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_FETCH_URL: string
|
|
readonly VITE_API_SET_CONTAINER_LIST_URL: string
|
|
readonly VITE_API_GET_FEEDBACK_URL: string
|
|
// more env variables...
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|