siegel
Version:
Web application development ecosystem
5 lines (4 loc) • 345 B
TypeScript
import http2 from 'http2';
import type { ServerBootParams } from '../types';
declare function createHTTP2Server(params: ServerBootParams): Promise<http2.Http2Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse, typeof http2.Http2ServerRequest, typeof http2.Http2ServerResponse>>;
export default createHTTP2Server;