freeCodeCamp/shared/config/modules.ts
Huyen Nguyen 17812fc549
feat(external curricula): build external curricula data v2 (#59533)
Co-authored-by: sembauke <semboot699@gmail.com>
2025-04-29 13:19:19 +02:00

9 lines
140 B
TypeScript

export interface Module {
dashedName: string;
comingSoon?: boolean;
blocks: {
dashedName: string;
}[];
moduleType?: string;
}