mirror of
https://github.com/moeru-ai/airi.git
synced 2026-08-14 08:52:42 +00:00
14 lines
355 B
TypeScript
14 lines
355 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_DISTRIBUTION?: 'direct' | 'steam'
|
|
readonly VITE_DISABLE_FLUX_PURCHASE?: string
|
|
readonly VITE_DISABLE_CUSTOM_PROVIDERS?: string
|
|
readonly VITE_ENABLE_POSTHOG?: string
|
|
readonly VITE_POSTHOG_PROJECT_KEY?: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|