8 lines
193 B
TypeScript
8 lines
193 B
TypeScript
import { Group } from "./Group";
|
|
import { PointInterface } from "./Websocket/PointInterface";
|
|
|
|
export interface UserInterface {
|
|
id: string,
|
|
group?: Group,
|
|
position: PointInterface
|
|
} |