Type Alias ParsedVizNode

ParsedVizNode: {
    children: string[];
    height: number | null;
    id: string;
    isParent: boolean;
    label: string;
    labelloc: string;
    name: string;
    width: number | null;
    x: number;
    y: number;
}