import { html, nothing } from "lit" import ElementFactory from "../../element/ElementFactory.js" import NodeTemplate from "./NodeTemplate.js" /** * @typedef {import("../../element/NodeElement.js").default} NodeElement * @typedef {import("../../element/PinElement.js").PinElementConstructor} PinElementConstructor */ export default class VariableManagementNodeTemplate extends NodeTemplate { #hasInput = false #hasOutput = false #displayName = "" static nodeStyleClasses = ["ueb-node-style-glass"] /** @param {NodeElement} element */ initialize(element) { super.initialize(element) this.#displayName = this.element.getNodeDisplayName() } render() { return html`