| 3 | export type Theme = "light" | "dark" | "system"; |
| 4 | |
| 5 | export interface OpenAIApiConfig { |
| 6 | key: string; |
| 7 | endpoint: string; |
| 8 | model: string; |
| 9 | } |
| 10 | |
| 11 | export interface Setting { |
| 12 | locale: Locale; |
nothing calls this directly
no outgoing calls
no test coverage detected