workadventure/back/src/Model/Websocket/ExSocketInterface.ts
2020-04-29 01:40:32 +02:00

10 lines
249 B
TypeScript

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