Archived
1
0

Expose websocket server to plugins

Same reasoning used when exposing Express.
This commit is contained in:
Asher
2021-01-28 12:48:47 -06:00
parent b13db3124b
commit 5505959f7e
3 changed files with 9 additions and 6 deletions

View File

@ -6,6 +6,7 @@ import * as express from "express"
import * as expressCore from "express-serve-static-core"
import ProxyServer from "http-proxy"
import * as net from "net"
import Websocket from "ws"
/**
* Overlay
@ -102,6 +103,11 @@ export interface WebsocketRouter {
*/
export function WsRouter(): WebsocketRouter
/**
* The websocket server used by code-server.
*/
export const wss: Websocket.Server
/**
* The Express import used by code-server.
*
@ -110,7 +116,6 @@ export function WsRouter(): WebsocketRouter
* instances.
*/
export { express }
/**
* Use to add a field to a log.
*