UNPKG

lazy-widgets

Version:

Typescript retained mode GUI for the HTML canvas API

12 lines (11 loc) 288 B
import type { Widget } from '../widgets/Widget.js'; /** * A context object that will be passed to a script as the 'context' variable in * an XML UI. * * @category XML */ export interface XMLUIParserScriptContext { variables: Map<string, unknown>; ids: Map<string, Widget>; }