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