mirror of
https://github.com/louislam/dockge.git
synced 2024-12-03 15:34:03 +00:00
12 lines
244 B
TypeScript
12 lines
244 B
TypeScript
|
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.");
|
||
|
}
|
||
|
}
|