@samatawy/diagrams
    Preparing search index...

    Interface ISerializedLayer

    Serialized representation of a layer, containing its identifier, name, visibility status, and the identifiers of the nodes it contains.

    interface ISerializedLayer {
        id: string;
        name: string;
        visible: boolean;
        nodes: string[];
    }
    Index

    Properties

    Properties

    id: string
    name: string
    visible: boolean
    nodes: string[]