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