mirror of
https://github.com/moeru-ai/airi.git
synced 2026-04-28 06:29:33 +00:00
--------- Co-authored-by-agent: Codex <267193182+codex@users.noreply.github.com> Co-authored-by-agent: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: RainbowBird <rbxin2003@outlook.com> Co-authored-by: Neko <neko@ayaka.moe>
13 lines
367 B
TypeScript
13 lines
367 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_ENABLE_POSTHOG?: string
|
|
readonly VITE_POSTHOG_PROJECT_KEY_WEB?: string
|
|
readonly VITE_POSTHOG_PROJECT_KEY_DESKTOP?: string
|
|
readonly VITE_POSTHOG_PROJECT_KEY_POCKET?: string
|
|
readonly VITE_POSTHOG_PROJECT_KEY_DOCS?: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|