mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-02-02 06:04:06 -05:00
12 lines
183 B
TypeScript
12 lines
183 B
TypeScript
interface SuperBlock {
|
|
title: string;
|
|
intro: string[];
|
|
blocks: string[];
|
|
modules?: string[];
|
|
chapters?: string[];
|
|
}
|
|
|
|
export interface Intro {
|
|
[key: string]: SuperBlock;
|
|
}
|