mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
b393937211
Co-authored-by: ahmad abdolsaheb <ahmad.abdolsaheb@gmail.com>
9 lines
161 B
TypeScript
9 lines
161 B
TypeScript
import { BlockLabel } from './blocks';
|
|
|
|
export interface Module {
|
|
dashedName: string;
|
|
comingSoon?: boolean;
|
|
blocks: string[];
|
|
moduleType?: BlockLabel;
|
|
}
|