@cpod/sdk - v0.2.7
    Preparing search index...

    Interface GraphNode

    Type definitions for the Graphs module

    interface GraphNode {
        id: string;
        type: string;
        label: string;
        data?: Record<string, unknown>;
        position?: { x: number; y: number };
    }
    Index

    Properties

    id: string
    type: string
    label: string
    data?: Record<string, unknown>
    position?: { x: number; y: number }