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

14 lines
353 B
TypeScript
Raw Normal View History

import {Socket} from "socket.io";
import {PointInterface} from "./PointInterface";
import {Identificable} from "./Identificable";
export interface ExSocketInterface extends Socket, Identificable {
token: any;
roomId: string;
2020-04-29 01:40:32 +02:00
webRtcRoomId: string;
userId: string;
name: string;
character: string;
position: PointInterface;
}