refactor: fix type

This commit is contained in:
syuilo 2022-02-19 14:30:42 +09:00
parent 077a3fd311
commit 1db0032d08

View file

@ -109,7 +109,8 @@ export default class Connection {
*
*/
@autobind
private async onWsConnectionMessage(data: websocket.IMessage) {
private async onWsConnectionMessage(data: websocket.Message) {
if (data.type !== 'utf8') return;
if (data.utf8Data == null) return;
let obj: Record<string, any>;