Files
freeCodeCamp/tools/challenge-editor/client/interfaces/chapter.ts

11 lines
179 B
TypeScript

export interface Module {
name: string;
path: string;
}
export interface ChaptersWithLocation {
modules: Module[];
currentSuperBlock: string;
currentChapter: string;
}