15 lines
346 B
TypeScript
15 lines
346 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_APP_RELAY: string
|
|
readonly VITE_ADMIN_NPUBS: string
|
|
readonly VITE_REPORTING_NPUB: string
|
|
readonly VITE_FALLBACK_MOD_IMAGE: string
|
|
readonly VITE_FALLBACK_GAME_IMAGE: string
|
|
// more env variables...
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|