@rekurt/openkline - v0.2.0
    Preparing search index...

    Interface HoveredObject

    Topmost interactive object under the cursor, reported in HoverInfo. Lets hosts build context menus, tooltips, or hover highlights without re-running their own hit-tests. id is the object's stable identifier:

    • drawing — the Drawing.id (random string assigned on creation).
    • primitive — the Primitive.id (host-supplied, e.g. 'priceline:0').
    • marker — reserved for a future marker hit-test (not yet emitted).
    interface HoveredObject {
        id: string;
        kind: "drawing" | "primitive" | "marker";
    }
    Index

    Properties

    Properties

    id: string
    kind: "drawing" | "primitive" | "marker"