safetwitch/env.d.ts

12 lines
276 B
TypeScript
Raw Normal View History

2023-03-07 06:19:05 +00:00
/// <reference types="vite/client" />
interface ImportMetaEnv {
2023-04-09 00:04:28 +00:00
readonly VITE_BACKEND_DOMAIN: string
readonly VITE_INSTANCE_DOMAIN: string
readonly VITE_HTTPS: string
// more env variables...
}
interface ImportMeta {
readonly env: ImportMetaEnv
}