0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch.git synced 2025-01-03 03:10:04 -05:00
safetwitch/env.d.ts

11 lines
238 B
TypeScript
Raw Normal View History

2023-03-07 01:19:05 -05:00
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_BACKEND_URL: string
readonly VITE_INSTANCE_URL: string
// more env variables...
}
interface ImportMeta {
readonly env: ImportMetaEnv
}