MCPcopy
hub / github.com/nilbuild/developer-roadmap / RoadmapFrontmatter

Interface RoadmapFrontmatter

src/lib/roadmap.ts:4–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import type { SponsorType } from '../components/Sponsor/Sponsor.astro';
3
4export interface RoadmapFrontmatter {
5 jsonUrl: string;
6 pdfUrl: string;
7 order: number;
8 featuredTitle: string;
9 featuredDescription: string;
10 title: string;
11 description: string;
12 hasTopics: boolean;
13 isNew: boolean;
14 isUpcoming: boolean;
15 dimensions?: {
16 width: number;
17 height: number;
18 };
19 sponsor?: SponsorType;
20 seo: {
21 title: string;
22 description: string;
23 keywords: string[];
24 };
25 relatedRoadmaps: string[];
26 sitemap: {
27 priority: number;
28 changefreq: string;
29 };
30 tags: string[];
31}
32
33export type RoadmapFileType = MarkdownFileType<RoadmapFrontmatter> & {
34 id: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected