UNPKG

lazy-widgets

Version:

Typescript retained mode GUI for the HTML canvas API

15 lines (14 loc) 470 B
import { StickyEvent } from './StickyEvent.js'; /** * Signals to a {@link Root} that the pointer is no longer hovering it. This * will result in new {@link LeaveEvent | LeaveEvents} being dispatched to * hovered {@link Widget | Widgets}. * * @category Event */ export declare class LeaveRootEvent extends StickyEvent { static readonly type = "leave-root"; readonly type: typeof LeaveRootEvent.type; readonly userCapturable: false; constructor(); }