forked from integrated_whb/integrated_whb_vue
15 lines
365 B
TypeScript
15 lines
365 B
TypeScript
|
/// <reference types="vite/client" />
|
||
|
|
||
|
interface ImportMetaEnv {
|
||
|
readonly VITE_BASE_URL: string
|
||
|
readonly VITE_PROXY: string
|
||
|
readonly VITE_FILE_URL: string
|
||
|
readonly VITE_TEMPLATE_URL: string
|
||
|
readonly VITE_ON_LINE_WEB_SOCKET_URL: string
|
||
|
readonly VITE_LEARNING_WEB_SOCKET_URL: string
|
||
|
}
|
||
|
|
||
|
interface ImportMeta {
|
||
|
readonly env: ImportMetaEnv
|
||
|
}
|