mirror of
https://github.com/moeru-ai/airi.git
synced 2026-04-28 06:29:33 +00:00
* refactor(apps/*,docs): unify PostHog config * [autofix.ci] apply automated fixes * refactor: remove ImportMeta and keep ImportMetaEnv only --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
12 lines
327 B
TypeScript
12 lines
327 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
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
|
|
}
|