UNPKG

airship-server

Version:

Airship is a framework for Node.JS & TypeScript that helps you to write big, scalable and maintainable API servers.

17 lines 575 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * AirshipSchemeGenerator Generates API Server scheme */ class AirshipSchemeGenerator { constructor(airshipApiSchemeGenerator, logger, ...methods) { this._airshipApiSchemeGenerator = airshipApiSchemeGenerator; this._logger = logger; this._methods = methods; } generate() { return this._airshipApiSchemeGenerator.generateApiScheme(...this._methods); } } exports.default = AirshipSchemeGenerator; //# sourceMappingURL=AirshipSchemeGenerator.js.map