mirror of
https://github.com/cdr/code-server.git
synced 2025-12-06 08:27:17 +01:00
10 lines
377 B
TypeScript
10 lines
377 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
|
|
}
|