mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-02-18 01:00:29 -05: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;
|
|
}
|