code-server/typings/httpolyglot.d.ts

8 lines
365 B
TypeScript
Raw Normal View History

2019-07-11 22:12:52 +00: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, requestListener?: (req: http.IncomingMessage, res: http.ServerResponse) => void): https.Server;
}