| 3 | import { type Certification } from '@freecodecamp/shared/config/certification-settings'; |
| 4 | |
| 5 | interface CertificationChallenge { |
| 6 | id: string; |
| 7 | title: string; |
| 8 | certification: Certification; |
| 9 | challengeType: number; |
| 10 | tests: { id: string; title: string }[]; |
| 11 | } |
| 12 | |
| 13 | export const buildCertification = ( |
| 14 | filePath: string |
nothing calls this directly
no outgoing calls
no test coverage detected