blob: e6a389baeafc888030aacb26157c651299deed79 (
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);
}
|