/
githubmirror
/
code-server
Обзор
Документация
Войти
/
githubmirror
/
code-server
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
typings/httpolyglot/index.d.ts
10 строк
378 B
Anmol Sethi
Format and lint
15 фев 2020, 04:00
Не верифицирован
15 фев 2020, 04:00
4aa1540
Код
Авторство
О чём код?
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 }