export interface RoutingGraphNode {
    kind?;
    children?;
    module?;
    name?: string;
}
