mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-13 19:00:41 -04:00
16 lines
259 B
TypeScript
16 lines
259 B
TypeScript
export interface Block {
|
|
name: string;
|
|
path: string;
|
|
}
|
|
|
|
export interface BlocksWithSuperBlock {
|
|
blocks: Block[];
|
|
currentSuperBlock: string;
|
|
}
|
|
|
|
export interface BlocksWithModule {
|
|
blocks: Block[];
|
|
currentModule: string;
|
|
currentChapter: string;
|
|
}
|