2020-04-07 10:08:04 +02:00
|
|
|
import { Group } from "./Group";
|
|
|
|
import { PointInterface } from "./Websocket/PointInterface";
|
|
|
|
|
2020-04-09 23:26:19 +02:00
|
|
|
export interface UserInterface {
|
|
|
|
id: string,
|
|
|
|
group?: Group,
|
|
|
|
position: PointInterface
|
2020-04-07 10:08:04 +02:00
|
|
|
}
|