UNPKG

lazy-widgets

Version:

Typescript retained mode GUI for the HTML canvas API

14 lines (13 loc) 359 B
/** * The current state of a {@link BaseClickHelper} * * @category Helper */ export declare enum ClickState { /** No pointer is hovering over this clickable widget */ Released = 0, /** A pointer is hovering over this clickable widget */ Hover = 1, /** A pointer's button is being held down over this clickable widget */ Hold = 2 }