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.
code-server/typings/httpolyglot/index.d.ts

11 lines
378 B
TypeScript
Raw Normal View History

2020-02-04 20:27:46 +01: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-15 01:46:00 +01:00
requestListener?: (req: http.IncomingMessage, res: http.ServerResponse) => void,
2020-02-04 20:27:46 +01:00
): https.Server
}