12 lines
286 B
TypeScript
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;
|
|
} |