mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-04 00:05:28 -05:00
27 lines
447 B
TypeScript
27 lines
447 B
TypeScript
import { SuperBlocks } from './curriculum';
|
|
|
|
enum Levels {
|
|
Beginner = 'beginner',
|
|
Intermediate = 'intermediate',
|
|
Advanced = 'advanced'
|
|
}
|
|
|
|
interface Catalog {
|
|
superBlock: SuperBlocks;
|
|
level: Levels;
|
|
hours: number;
|
|
}
|
|
|
|
export const catalog: Catalog[] = [
|
|
{
|
|
superBlock: SuperBlocks.BasicHtml,
|
|
level: Levels.Beginner,
|
|
hours: 2
|
|
},
|
|
{
|
|
superBlock: SuperBlocks.SemanticHtml,
|
|
level: Levels.Beginner,
|
|
hours: 2
|
|
}
|
|
];
|