summary refs log tree commit diff
path: root/src/opcodes/Resume.ts
blob: 8badbb35ec33cd2597953577daa146bc452a3073 (plain) (blame)
1
2
3
4
5
6
7
import { CLOSECODES, Payload } from "../util/Constants";

import WebSocket from "../util/WebSocket";

export function onResume(this: WebSocket, data: Payload) {
	return this.close(CLOSECODES.Session_timed_out);
}