| 5 | import { LLM_PROVIDERS, type LLMProvider } from "@/lib/autofigure-types" |
| 6 | |
| 7 | interface ImageGenConfig { |
| 8 | provider: LLMProvider |
| 9 | apiKey: string |
| 10 | model: string |
| 11 | baseUrl: string |
| 12 | } |
| 13 | |
| 14 | interface ImageGenSettingsProps { |
| 15 | isOpen: boolean |
nothing calls this directly
no outgoing calls
no test coverage detected