lazy-widgets
Version:
Typescript retained mode GUI for the HTML canvas API
14 lines (13 loc) • 406 B
TypeScript
import type { Widget } from '../widgets/Widget.js';
/**
* A context object that will be used when parsing an XML UI tree. Used to keep
* track of resources that are shared when parsing, or inputs required for
* parsing.
*
* @category XML
*/
export interface XMLUIParserContext {
scriptImports: Map<string, unknown> | null;
variableMap: Map<string, unknown>;
idMap: Map<string, Widget>;
}