import { SourceChildNodes } from "./SourceChildNodes"; import { SourceConnection } from "./SourceConnection"; export interface RootNode { id: string; name: string; description: string; childNodes: SourceChildNodes; childConnections: Array; errors?: { [code: string]: true; }; }