mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-06 06:01:31 -05:00
22 lines
526 B
TypeScript
22 lines
526 B
TypeScript
import type { Module } from './modules';
|
|
|
|
// TODO: Dynamically create these from intro.json or full-stack.json
|
|
export enum FsdChapters {
|
|
Welcome = 'freecodecamp',
|
|
Html = 'html',
|
|
Css = 'css',
|
|
Javascript = 'javascript',
|
|
FrontendLibraries = 'frontend-libraries',
|
|
Python = 'python',
|
|
RelationalDatabases = 'relational-databases',
|
|
BackendJavascript = 'backend-javascript',
|
|
Career = 'career'
|
|
}
|
|
|
|
export interface Chapter {
|
|
dashedName: string;
|
|
comingSoon?: boolean;
|
|
modules: Module[];
|
|
chapterType?: string;
|
|
}
|