svg-layout-designer-react/src/vite-env.d.ts
2022-09-16 10:03:41 +00:00

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
}