Files
safetwitch/env.d.ts
T
2025-09-05 10:03:34 -04:00

19 lines
517 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly SAFETWITCH_BACKEND_DOMAIN: string
readonly SAFETWITCH_INSTANCE_DOMAIN: string
readonly SAFETWITCH_HTTPS: string
readonly SAFETWITCH_DEFAULT_LOCALE: string
readonly SAFETWITCH_FALLBACK_LOCALE: string
readonly SAFETWITCH_COMMIT_HASH: string
readonly SAFETWITCH_TAG: string
readonly SAFETWITCH_DEFAULT_THEME: string
// more env variables...
}
interface ImportMeta {
readonly env: ImportMetaEnv
}