2020-04-04 14:05:18 +02:00
|
|
|
import {Socket} from "socket.io";
|
2020-04-04 16:25:03 +02:00
|
|
|
import {PointInterface} from "./PointInterface";
|
2020-04-04 14:05:18 +02:00
|
|
|
|
|
|
|
export interface ExSocketInterface extends Socket {
|
2020-04-04 19:25:08 +02:00
|
|
|
token: any;
|
|
|
|
roomId: string;
|
2020-04-29 01:40:32 +02:00
|
|
|
webRtcRoomId: string;
|
2020-04-04 19:25:08 +02:00
|
|
|
userId: string;
|
2020-04-04 16:25:03 +02:00
|
|
|
position: PointInterface;
|
2020-04-04 14:05:18 +02:00
|
|
|
}
|