Interface XMLUIParserContext

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.

interface XMLUIParserContext {
    idMap: Map<string, Widget>;
    scriptImports: null | Map<string, unknown>;
    variableMap: Map<string, unknown>;
}

Properties

idMap: Map<string, Widget>
scriptImports: null | Map<string, unknown>
variableMap: Map<string, unknown>