Member Junction
    Preparing search index...

    Compact, model-facing representation of one item inside deltas / summaries.

    interface WhiteboardCompactItem {
        author: WhiteboardAuthor;
        bold?: boolean;
        color?: string;
        fontFamily?: WhiteboardFontFamily;
        fontSize?: number;
        from?: string | WhiteboardPoint;
        h?: number;
        id: string;
        name?: string;
        points?: number;
        shape?: WhiteboardShapeKind;
        text?: string;
        to?: string | WhiteboardPoint;
        type: WhiteboardItemKind;
        w?: number;
        x?: number;
        y?: number;
    }
    Index

    Properties

    bold?: boolean
    color?: string
    fontSize?: number
    from?: string | WhiteboardPoint
    h?: number
    id: string
    name?: string

    Image file name, or the html widget's Title.

    points?: number
    text?: string

    Clipped text content (sticky/text/shape labels; markdown/html: clipped SOURCE).

    to?: string | WhiteboardPoint
    w?: number
    x?: number
    y?: number