| 5 | type CometState = Record<string, string>; |
| 6 | |
| 7 | interface ChangeStatus { |
| 8 | name: string; |
| 9 | workflow: string; |
| 10 | phase: string; |
| 11 | buildMode: string; |
| 12 | isolation: string; |
| 13 | verifyMode: string; |
| 14 | verifyResult: string; |
| 15 | designDoc: string | null; |
| 16 | plan: string | null; |
| 17 | tasksCompleted: number; |
| 18 | tasksTotal: number; |
| 19 | nextCommand: string | null; |
| 20 | } |
| 21 | |
| 22 | function getNextCommand(phase: string): string | null { |
| 23 | switch (phase) { |
nothing calls this directly
no outgoing calls
no test coverage detected