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