UNPKG

lazy-widgets

Version:

Typescript retained mode GUI for the HTML canvas API

9 lines (8 loc) 282 B
import type { WidgetEvent } from '../events/WidgetEvent.js'; /** * A list of pairs. Each pair contains, in this order, the event that was * dispatched, and whether it was captured. * * @category Core */ export type CaptureList = Array<[event: WidgetEvent, captured: boolean]>;