freeCodeCamp/shared/config/modules.ts
Tom b393937211
feat(client): add exam project tag (#63584)
Co-authored-by: ahmad abdolsaheb <ahmad.abdolsaheb@gmail.com>
2025-11-06 11:04:01 -06:00

9 lines
161 B
TypeScript

import { BlockLabel } from './blocks';
export interface Module {
dashedName: string;
comingSoon?: boolean;
blocks: string[];
moduleType?: BlockLabel;
}