g3-toolkit API Reference
    Preparing search index...

    Interface DocNode

    interface DocNode {
        data?: Readonly<Record<string, unknown>>;
        height?: number;
        id: string;
        label?: string;
        layoutOptions?: Readonly<Record<string, string>>;
        parent?: string;
        ports?: readonly DocPort[];
        width?: number;
    }
    Index

    Properties

    data?: Readonly<Record<string, unknown>>

    Domain data (opaque to the format).

    height?: number
    id: string
    label?: string
    layoutOptions?: Readonly<Record<string, string>>

    Layout-option passthrough (opaque; ELK option ids preserved).

    parent?: string

    Containment: parent node id. Absent = root.

    ports?: readonly DocPort[]
    width?: number