safetwitch/env.d.ts

14 lines
389 B
TypeScript
Raw Normal View History

2023-03-07 06:19:05 +00:00
/// <reference types="vite/client" />
interface ImportMetaEnv {
2023-06-13 16:08:43 +00:00
readonly SAFETWITCH_BACKEND_DOMAIN: string
readonly SAFETWITCH_INSTANCE_DOMAIN: string
readonly SAFETWITCH_HTTPS: string
readonly SAFETWITCH_DEFAULT_LOCALE: string
readonly SAFETWITCH_FALLBACK_LOCALE: string
// more env variables...
}
interface ImportMeta {
readonly env: ImportMetaEnv
}