Files
archy/aiui/packages/app/src/env.d.ts
T
archipelago 7ba3109b6d Add 'aiui/' from commit 'e30ac1d1069532fb6d652d87e2d4a2fe9d1b4773'
git-subtree-dir: aiui
git-subtree-mainline: 0c4826f8cc
git-subtree-split: e30ac1d106
2026-08-03 15:07:11 -04:00

22 lines
560 B
TypeScript

/// <reference types="vite/client" />
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<object, object, unknown>
export default component
}
interface ImportMetaEnv {
readonly VITE_OPENROUTER_API_KEY: string
readonly VITE_ANTHROPIC_API_KEY: string
readonly VITE_ANTHROPIC_TOKEN: string
readonly VITE_TMDB_API_KEY: string
readonly VITE_DEV_MODE: string
readonly VITE_MOCK_MEDIA_SOURCES: string
readonly VITE_DISABLE_CRYPTO: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}