svg-layout-designer-react/src/vite-env.d.ts
2022-11-21 13:47:04 +01:00

13 lines
354 B
TypeScript

// eslint-disable-next-line @typescript-eslint/triple-slash-reference
/// <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
}