aboutsummaryrefslogtreecommitdiffstats
path: root/backend/src/model/websocket.ts
blob: bb2ae8d154c87651ce4e21101588d3a655ebfe58 (plain)
1
2
3
4
5
6
7
import { WebSocket } from 'ws';

export interface CoopWebSocket extends WebSocket {
  clientId: string;
  sessionId: string;
  nextMoveTimestamp: number;
}