mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-14 22:01:48 -04:00
15 lines
266 B
TypeScript
15 lines
266 B
TypeScript
export interface SuperBlockModule {
|
|
dashedName: string;
|
|
blocks?: string[];
|
|
}
|
|
|
|
export interface SuperBlockChapter {
|
|
dashedName: string;
|
|
modules: SuperBlockModule[];
|
|
}
|
|
|
|
export interface SuperBlockMeta {
|
|
blocks?: string[];
|
|
chapters?: SuperBlockChapter[];
|
|
}
|