mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-04-06 19:00:52 -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[];
|
|
}
|