| 1 | export interface MarkdownFileType<T = Record<string, string>> { |
| 2 | frontmatter: T; |
| 3 | file: string; |
| 4 | url?: string; |
| 5 | Content: any; |
| 6 | getHeadings: () => { |
| 7 | depth: number; |
| 8 | slug: string; |
| 9 | text: string; |
| 10 | }[]; |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected