import GraphElement from "./GraphElement" export default class GraphLink extends GraphElement { /** * * @typedef {{ * node: String, * pin: String * }} PinReference * @param {?PinReference} source * @param {?PinReference} destination */ constructor(source, destination) { super() this.source = source this.destination = destination } render() { return ` ` } } customElements.define("u-link", GraphLink)