Files
page-agent/src/config/index.ts
T

11 lines
281 B
TypeScript
Raw Normal View History

2025-09-29 16:33:15 +08:00
import type { DomConfig } from '@/dom'
import type { SupportedLanguage } from '@/i18n'
import type { LLMConfig } from '@/llms'
export interface UIConfig {
// theme?: 'light' | 'dark'
language?: SupportedLanguage
}
export type PageAgentConfig = LLMConfig & DomConfig & UIConfig