import html from "./html" import Template from "./Template" export default class BlueprintTemplate extends Template { header(element) { return html`
1:1
` } overlay() { return html`
` } /** * * @param {import("../Blueprint").Blueprint} element * @returns */ viewport(element) { return html`
` } /** * Computes the html content of the target element. * @param {HTMLElement} element Target element * @returns The computed html */ render(element) { return html` ${this.header(element)} ${this.overlay(element)} ${this.viewport(element)} ` } }