UNPKG

@node-server/renderer

Version:

NodeServerJs is a library with standard feature implemented for web and api

19 lines (18 loc) 529 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Handler = /** @class */ (function () { function Handler() { this.extention = "*"; } Handler.prototype.Handle = function (api, req, res) { return null; }; Handler.prototype.Init = function (coreConfig) { this.Config = coreConfig; }; Handler.prototype.Create = function (filepath, api_name, data) { return null; }; return Handler; }()); exports.Handler = Handler;