Files
freeCodeCamp/shared/config/modules.ts
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;
}