Fix ws import

This commit is contained in:
Chocobozzz 2021-08-30 09:47:17 +02:00
parent 1199515781
commit e4671228c8
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 8 additions and 0 deletions

8
server/typings/ws/index.d.ts vendored Normal file
View File

@ -0,0 +1,8 @@
import { Server } from 'ws'
declare module 'ws' {
// FIXME: remove when 'ws' is fixed
export class WebSocketServer extends Server {
}
}