| 3 | */ |
| 4 | |
| 5 | export interface CreateProjectCLIOption { |
| 6 | id: string; |
| 7 | name: string; |
| 8 | icon: string; |
| 9 | description: string; |
| 10 | models: Array<{ |
| 11 | id: string; |
| 12 | name: string; |
| 13 | description?: string; |
| 14 | supportsImages?: boolean; |
| 15 | }>; |
| 16 | color: string; |
| 17 | features: string[]; |
| 18 | downloadUrl?: string; |
| 19 | installCommand?: string; |
| 20 | enabled?: boolean; |
| 21 | } |
| 22 | |
| 23 | export interface CLIConfig { |
| 24 | enabled?: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected