| 188 | // --------------------------------------------------------------------------- |
| 189 | |
| 190 | interface EditableStage { |
| 191 | stage_name: string; |
| 192 | stage_description: string; |
| 193 | targets: { id: number; description: string }[]; |
| 194 | } |
| 195 | |
| 196 | function configToEditable(config: ModConfig): EditableStage[] { |
| 197 | return Object.values(config.stages) |
nothing calls this directly
no outgoing calls
no test coverage detected