MCPcopy
hub / github.com/freeCodeCamp/freeCodeCamp / Intro

Interface Intro

client/i18n/locales.test.ts:20–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18import intro from './locales/english/intro.json';
19
20interface Intro {
21 [key: string]: {
22 title: string;
23 summary?: string[];
24 intro: string[];
25 blocks: {
26 [block: string]: {
27 title: string;
28 intro: string[];
29 };
30 };
31 };
32}
33
34const filesThatShouldExist = [
35 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected