Member Junction
    Preparing search index...

    A connector between two endpoints. Each endpoint references an item by ID when attached; when the referenced item is removed (or was never set) the endpoint falls back to the absolute …Point coordinate.

    interface WhiteboardConnectorItem {
        Author: WhiteboardAuthor;
        FromItemID?: string;
        FromPoint?: WhiteboardPoint;
        ID: string;
        Kind: "connector";
        ToItemID?: string;
        ToPoint?: WhiteboardPoint;
        Z: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Who placed the item. Drives the ownership chrome (chips / violet vs slate-amber).

    FromItemID?: string
    FromPoint?: WhiteboardPoint
    ID: string

    Stable item id (e.g. sticky-3) — referenced by connectors, deltas and agent tools.

    Kind: "connector"
    ToItemID?: string
    ToPoint?: WhiteboardPoint
    Z: number

    Render order (higher renders on top). Assigned by the engine.