| 2 | import type { SponsorType } from '../components/Sponsor/Sponsor.astro'; |
| 3 | |
| 4 | export 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 | |
| 33 | export type RoadmapFileType = MarkdownFileType<RoadmapFrontmatter> & { |
| 34 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected