mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-31 00:04:05 -05:00
12 lines
205 B
TypeScript
12 lines
205 B
TypeScript
export interface ChallengeData {
|
|
name: string;
|
|
id: string;
|
|
path: string;
|
|
}
|
|
|
|
export interface ChallengeDataWithBlock {
|
|
steps: ChallengeData[];
|
|
currentBlock: string;
|
|
currentSuperBlock: string;
|
|
}
|