UNPKG

@glandjs/http

Version:

A protocol adapter for HTTP built on top of the Gland architecture solution.

8 lines (7 loc) 295 B
import { Server } from 'net'; import { HttpApplicationOptions } from '../interface'; import type { RequestListener } from 'http'; export declare class ServerFactory { private static readonly _logger; static create(options?: HttpApplicationOptions, listener?: RequestListener): Server; }