@samatawy/diagrams
    Preparing search index...

    Interface ILayer

    The ILayer interface defines the properties of a layer in the diagram, including its ID, name, visibility, and the nodes it contains.

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

    Properties

    Properties

    id: string

    The unique identifier of the layer.

    name: string

    The name of the layer.

    visible: boolean

    A boolean indicating whether the layer is visible.

    nodes: string[]

    An array of node IDs that belong to this layer.