| 26 | export type ProgressStatus = 'ACTIVE' | 'COMPLETE' | 'INCOMPLETE' | 'FAIL' |
| 27 | |
| 28 | export interface Progress { |
| 29 | levels: { |
| 30 | [levelId: string]: boolean |
| 31 | } |
| 32 | steps: { |
| 33 | [stepId: string]: boolean |
| 34 | } |
| 35 | complete: boolean |
| 36 | } |
| 37 | |
| 38 | export interface StepProgress { |
| 39 | [stepId: string]: boolean |
nothing calls this directly
no outgoing calls
no test coverage detected