g3-toolkit API Reference
    Preparing search index...

    Interface ElkJsonNode

    The ELK JSON subset this importer reads (structural typing; any extra fields are ignored, never rejected).

    interface ElkJsonNode {
        children?: readonly ElkJsonNode[];
        edges?: readonly ElkJsonEdge[];
        height?: number;
        id: string;
        labels?: readonly { text?: string }[];
        layoutOptions?: Readonly<Record<string, string>>;
        ports?: readonly {
            id: string;
            layoutOptions?: Readonly<Record<string, string>>;
        }[];
        width?: number;
    }
    Index

    Properties

    children?: readonly ElkJsonNode[]
    edges?: readonly ElkJsonEdge[]
    height?: number
    id: string
    labels?: readonly { text?: string }[]
    layoutOptions?: Readonly<Record<string, string>>
    ports?: readonly {
        id: string;
        layoutOptions?: Readonly<Record<string, string>>;
    }[]
    width?: number