workadventure/back/src/Model/Websocket/ExSocketInterface.ts

12 lines
286 B
TypeScript

import {Socket} from "socket.io";
import {PointInterface} from "./PointInterface";
export interface ExSocketInterface extends Socket {
token: any;
roomId: string;
webRtcRoomId: string;
userId: string;
name: string;
frame: string;
position: PointInterface;
}