0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch.git synced 2024-12-22 13:22:58 -05:00
safetwitch/env.d.ts
2023-04-10 00:15:33 -04:00

12 lines
No EOL
276 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_BACKEND_DOMAIN: string
readonly VITE_INSTANCE_DOMAIN: string
readonly VITE_HTTPS: string
// more env variables...
}
interface ImportMeta {
readonly env: ImportMetaEnv
}