import { DocumentationExample } from './documentation-example'; export interface DocumentationDocument { id: string; name: string; internal: boolean; parentId?: string; overview: string; api: any; examples: { [exampleId: string]: DocumentationExample; }; }