mirror of
https://codeberg.org/dragongoose/safetwitch.git
synced 2024-11-08 01:11:42 +00:00
11 lines
No EOL
238 B
TypeScript
11 lines
No EOL
238 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_BACKEND_URL: string
|
|
readonly VITE_INSTANCE_URL: string
|
|
// more env variables...
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
} |