MCPcopy
hub / github.com/AsyncFuncAI/deepwiki-open / WikiPage

Interface WikiPage

src/types/wiki/wikipage.tsx:2–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1// Wiki Interfaces
2export 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected