mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-30 15:04:00 -05:00
11 lines
179 B
TypeScript
11 lines
179 B
TypeScript
export interface Module {
|
|
name: string;
|
|
path: string;
|
|
}
|
|
|
|
export interface ChaptersWithLocation {
|
|
modules: Module[];
|
|
currentSuperBlock: string;
|
|
currentChapter: string;
|
|
}
|