@samatawy/diagrams
    Preparing search index...

    Interface SpecSheet

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

    Hierarchy (View Summary)

    Index

    Properties

    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.

    id: string

    The unique identifier of the spec sheet.

    name: string

    The name of the spec sheet.