10 lines
166 B
TypeScript
10 lines
166 B
TypeScript
|
/// <reference types="vite/client" />
|
||
|
|
||
|
interface ImportMetaEnv {
|
||
|
readonly VITE_PORTAL_API_URL: string
|
||
|
}
|
||
|
|
||
|
interface ImportMeta {
|
||
|
readonly env: ImportMetaEnv
|
||
|
}
|