mirror of
https://codeberg.org/dragongoose/safetwitch.git
synced 2024-11-02 14:14:00 +00:00
16 lines
No EOL
469 B
TypeScript
16 lines
No EOL
469 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
|
|
// more env variables...
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
} |