Interface RawNodeDatum

interface RawNodeDatum {
    attributes?: Record<string, string | number | boolean>;
    children?: RawNodeDatum[];
    name: string;
}

Hierarchy (View Summary)

Properties

attributes?: Record<string, string | number | boolean>
children?: RawNodeDatum[]
name: string