| 1 | import toc from "../../docs/toc.ts"; |
| 2 | |
| 3 | export interface TableOfContentsEntry { |
| 4 | slug: string; |
| 5 | title: string; |
| 6 | category?: string; |
| 7 | href: string; |
| 8 | file: string; |
| 9 | } |
| 10 | |
| 11 | export interface TableOfContentsCategory { |
| 12 | title: string; |
nothing calls this directly
no outgoing calls
no test coverage detected