mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-10 09:05:55 -05:00
6 lines
109 B
TypeScript
6 lines
109 B
TypeScript
export interface PartialMeta {
|
|
name: string;
|
|
dashedName: string;
|
|
challengeOrder: [string, string][];
|
|
}
|