mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-09 16:01:39 -04:00
6 lines
96 B
TypeScript
6 lines
96 B
TypeScript
export interface ChallengeContent {
|
|
name: string;
|
|
fileData: string;
|
|
dashedName: string;
|
|
}
|