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