import {UIElement} from "../UIElement"; import {UIEventSource} from "../../Logic/UIEventSource"; export class VariableUiElement extends UIElement { private _html: UIEventSource; constructor(html: UIEventSource) { super(html); this._html = html; } InnerRender(): string { return this._html.data; } }