| 162 | export type AddOnCompiled = z.infer<typeof AddOnCompiledSchema> |
| 163 | |
| 164 | export interface AddOnSelection { |
| 165 | id: string |
| 166 | enabled: boolean |
| 167 | options: Record<string, any> |
| 168 | } |
| 169 | |
| 170 | export type FileBundleHandler = { |
| 171 | getFiles: () => Promise<Array<string>> |
nothing calls this directly
no outgoing calls
no test coverage detected