UNPKG

siegel

Version:

Web application development ecosystem

7 lines (6 loc) 355 B
import https, { Server } from 'https'; import express from 'express'; import type { ServerBootParams } from './types'; declare function createHTTPServer(params: ServerBootParams): Promise<express.Express | https.Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>>; export default createHTTPServer; export type { Server };