workadventure/back/src/Model/Websocket/ExSocketInterface.ts
2020-06-10 12:32:39 +02:00

15 lines
428 B
TypeScript

import {Socket} from "socket.io";
import {PointInterface} from "./PointInterface";
import {Identificable} from "./Identificable";
import {TokenInterface} from "../../Controller/AuthenticateController";
export interface ExSocketInterface extends Socket, Identificable {
token: string;
roomId: string;
webRtcRoomId: string;
userId: string;
name: string;
character: string;
position: PointInterface;
}