mirror of
https://github.com/danog/code-server.git
synced 2024-11-27 12:57:13 +01:00
11 lines
378 B
TypeScript
11 lines
378 B
TypeScript
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
|
|
}
|