@samatawy/diagrams
    Preparing search index...

    Interface ISerializedDiagram

    Serialized representation of a diagram, containing its identifier, nodes, layers, metadata, and optional grid settings.

    interface ISerializedDiagram {
        id: string;
        nodes: ISerializedNode[];
        groups?: ISerializedGroup[];
        layers: ISerializedLayer[];
        sheet_id?: string;
        sheet?: EmbeddedSheet;
        background?: FillStyle;
        meta?: Record<string, unknown>;
        image_assets?: Record<string, string>;
    }
    Index

    Properties

    id: string
    groups?: ISerializedGroup[]
    sheet_id?: string
    background?: FillStyle
    meta?: Record<string, unknown>
    image_assets?: Record<string, string>