| 22 | } |
| 23 | |
| 24 | export interface HikeSection extends HikeNodeBase { |
| 25 | _data: { |
| 26 | header: string |
| 27 | } |
| 28 | type: "section" |
| 29 | title: string |
| 30 | depth: number |
| 31 | parent: HikeSection | null |
| 32 | children: HikeNode[] |
| 33 | } |
| 34 | |
| 35 | interface HikeCode extends HikeNodeBase { |
| 36 | type: "code" |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…