UNPKG

sipp

Version:

An Opinionated, High-Productivity MVC Web Framework in TypeScript

13 lines 321 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.View = void 0; class View { renderToHtml() { return this.render(); } render(...args) { throw new Error('child views must implement this method'); } } exports.View = View; //# sourceMappingURL=index.js.map