siegel
Version:
Web application development ecosystem
6 lines (5 loc) • 539 B
TypeScript
import type { ServerBootParams } from './types';
declare const server: {
run(params: ServerBootParams): Promise<import("http2").Http2Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse, typeof import("http2").Http2ServerRequest, typeof import("http2").Http2ServerResponse> | import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse> | import("https").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>>;
};
export default server;