mirror of https://github.com/Chocobozzz/PeerTube
9 lines
144 B
TypeScript
9 lines
144 B
TypeScript
|
import { Server } from 'ws'
|
||
|
|
||
|
declare module 'ws' {
|
||
|
// FIXME: remove when 'ws' is fixed
|
||
|
export class WebSocketServer extends Server {
|
||
|
|
||
|
}
|
||
|
}
|