Archipelago — open-source initial import

This commit is contained in:
Archipelago
2026-08-12 10:55:50 +00:00
commit b67e1527a2
2068 changed files with 472303 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
/// <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
}