workadventure/back/src/Model/UserInterface.ts

7 lines
181 B
TypeScript
Raw Normal View History

2020-04-07 10:08:04 +02:00
import { Group } from "./Group";
import { PointInterface } from "./Websocket/PointInterface";
export interface Userinteface {
group: Group,
pointInterface: PointInterface
}