blob: 3760f8a38280efc391ddcf242e43018cf3b654d0 (
plain) (
blame)
1
2
3
4
5
6
|
import { CLOSECODES, Payload } from "../util/Constants";
import WebSocket from "../util/WebSocket";
export function onPresenceUpdate(this: WebSocket, data: Payload) {
// return this.close(CLOSECODES.Unknown_error);
}
|