mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-02-19 13:00:32 -05: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[];
|
|
}
|