0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch.git synced 2024-12-22 05:12:57 -05:00
safetwitch/env.d.ts
2023-06-13 12:08:43 -04:00

14 lines
No EOL
389 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
// more env variables...
}
interface ImportMeta {
readonly env: ImportMetaEnv
}