mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-04-10 22:00:43 -04:00
6 lines
96 B
TypeScript
6 lines
96 B
TypeScript
export interface ChallengeContent {
|
|
name: string;
|
|
fileData: string;
|
|
dashedName: string;
|
|
}
|