| 15 | ) as Curriculum; |
| 16 | |
| 17 | interface Challenge { |
| 18 | id: string; |
| 19 | tests?: { id?: string }[]; |
| 20 | challengeType: number; |
| 21 | url?: string; |
| 22 | msTrophyId?: string; |
| 23 | saveSubmissionToDB?: boolean; |
| 24 | isExam?: boolean; |
| 25 | } |
| 26 | |
| 27 | interface Block { |
| 28 | challenges: Challenge[]; |
nothing calls this directly
no outgoing calls
no test coverage detected