2026-03-02 14:15:39 +00:00
|
|
|
/// <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
|
2026-03-02 14:30:19 +00:00
|
|
|
readonly VITE_ANTHROPIC_API_KEY: string
|
2026-03-02 16:34:44 +00:00
|
|
|
readonly VITE_ANTHROPIC_TOKEN: string
|
2026-03-02 14:15:39 +00:00
|
|
|
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
|
|
|
|
|
}
|