mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-02-27 02:03:44 -05:00
6 lines
96 B
TypeScript
6 lines
96 B
TypeScript
export interface ChallengeContent {
|
|
name: string;
|
|
fileData: string;
|
|
dashedName: string;
|
|
}
|