@samatawy/diagrams
    Preparing search index...

    Interface EmbeddedSheet

    interface EmbeddedSheet {
        id?: string;
        name?: string;
        version?: string;
        description?: string;
        diagram: { background?: FillStyle };
        types: Record<string, NodeStyle>;
        classes: Record<string, NodeStyle>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    id?: string

    The unique identifier of the spec sheet. Optional if embedded, required for Spec Sheets.

    name?: string

    The name of the spec sheet. Optional if embedded, required for Spec Sheets.

    version?: string

    The version of the spec sheet. Always optional.

    description?: string

    The description of the spec sheet. Always optional.

    diagram: { background?: FillStyle }

    The styles defined for the diagram itself, such as background color.

    types: Record<string, NodeStyle>

    The styles defined for each node type.

    classes: Record<string, NodeStyle>

    The styles defined for each class name.