refactor: fix type
This commit is contained in:
parent
645cf109e9
commit
1dc06f7ad3
@ -109,7 +109,8 @@ export default class Connection {
|
|||||||
* クライアントからメッセージ受信時
|
* クライアントからメッセージ受信時
|
||||||
*/
|
*/
|
||||||
@autobind
|
@autobind
|
||||||
private async onWsConnectionMessage(data: websocket.IMessage) {
|
private async onWsConnectionMessage(data: websocket.Message) {
|
||||||
|
if (data.type !== 'utf8') return;
|
||||||
if (data.utf8Data == null) return;
|
if (data.utf8Data == null) return;
|
||||||
|
|
||||||
let obj: Record<string, any>;
|
let obj: Record<string, any>;
|
||||||
|
Loading…
Reference in New Issue
Block a user