UNPKG

@webdoc/template-library

Version:

Goodies for @webdoc template packages! See @webdoc/legacy-template for an example!

20 lines (18 loc) 379 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Plugin = void 0; class Plugin { constructor() { this.bindingPolicy = "complete"; this.renderer = null; } onBind(renderer) { this.renderer = renderer; } getShell() { throw new Error("Not Implemented: Plugin did not provide a shell!"); } } exports.Plugin = Plugin;