dockge/backend/util-server.ts

12 lines
244 B
TypeScript
Raw Normal View History

2023-10-23 11:30:58 +00:00
import { Socket } from "socket.io";
export interface DockgeSocket extends Socket {
userID: number;
}
export function checkLogin(socket : DockgeSocket) {
if (!socket.userID) {
throw new Error("You are not logged in.");
}
}