/** * @description Properties and methods contained in DOM node of UE element ({@link UIElementType}) */ export interface UIEDomElement extends HTMLElement { value: unknown; /** * @description Sets element's supported attribute ({@link UEAttr}) value. */ setUIEAttribute(name: string, value: unknown): void; }