| 1 | // Wiki Interfaces |
| 2 | export interface WikiPage { |
| 3 | id: string; |
| 4 | title: string; |
| 5 | content: string; |
| 6 | filePaths: string[]; |
| 7 | importance: 'high' | 'medium' | 'low'; |
| 8 | relatedPages: string[]; |
| 9 | // New fields for hierarchy |
| 10 | parentId?: string; |
| 11 | isSection?: boolean; |
| 12 | children?: string[]; // IDs of child pages |
| 13 | } |
nothing calls this directly
no outgoing calls
no test coverage detected