13 lines
260 B
TypeScript
13 lines
260 B
TypeScript
|
|
/// <reference types="vite/client" />
|
||
|
|
|
||
|
|
interface ImportMetaEnv {
|
||
|
|
readonly VITE_API_URL: string
|
||
|
|
readonly VITE_CDN_URL: string
|
||
|
|
readonly VITE_REACT_APP_VERSION: string
|
||
|
|
readonly VITE_AI_URL: string
|
||
|
|
}
|
||
|
|
|
||
|
|
interface ImportMeta {
|
||
|
|
readonly env: ImportMetaEnv
|
||
|
|
}
|