mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-06-19 21:09:51 +08:00
11 lines
314 B
TypeScript
11 lines
314 B
TypeScript
// 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',
|
|
RelationalDatabases = 'relational-databases',
|
|
Security = 'security-and-privacy'
|
|
}
|