Archived
1
0
This repository has been archived on 2024-09-09. You can view files and clone it, but cannot push or open issues or pull requests.

11 lines
378 B
TypeScript
Raw Normal View History

2020-02-04 13:27:46 -06:00
declare module "httpolyglot" {
import * as http from "http"
import * as https from "https"
function createServer(requestListener?: (req: http.IncomingMessage, res: http.ServerResponse) => void): http.Server
function createServer(
options: https.ServerOptions,
2020-02-14 19:46:00 -05:00
requestListener?: (req: http.IncomingMessage, res: http.ServerResponse) => void,
2020-02-04 13:27:46 -06:00
): https.Server
}