Files
freeCodeCamp/shared/config/modules.ts
2025-08-26 12:37:26 +02:00

7 lines
117 B
TypeScript

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