UNPKG

@nestjs/core

Version:

Nest - modern, fast, powerful node.js web framework (@core)

48 lines (47 loc) 1.11 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * @publicApi */ class AbstractHttpAdapter { constructor(instance) { this.instance = instance; } use(...args) { return this.instance.use(...args); } get(...args) { return this.instance.get(...args); } post(...args) { return this.instance.post(...args); } head(...args) { return this.instance.head(...args); } delete(...args) { return this.instance.delete(...args); } put(...args) { return this.instance.put(...args); } patch(...args) { return this.instance.patch(...args); } options(...args) { return this.instance.options(...args); } listen(port, hostname, callback) { return this.instance.listen(port, hostname, callback); } getHttpServer() { return this.httpServer; } setHttpServer(httpServer) { this.httpServer = httpServer; } getInstance() { return this.instance; } } exports.AbstractHttpAdapter = AbstractHttpAdapter;