export interface INode { readonly id: string; readonly text: string; readonly documentationUrls: ReadonlyArray; readonly children?: ReadonlyArray; }