UNPKG

lazy-widgets

Version:

Typescript retained mode GUI for the HTML canvas API

11 lines (10 loc) 279 B
/** * Options to be used in a {@link BaseXMLUIParser}. * * @category XML */ export interface XMLUIParserConfig { scriptImports?: Record<string, unknown> | Map<string, unknown>; variables?: Record<string, unknown> | Map<string, unknown>; allowScripts?: boolean; }