7 lines
181 B
TypeScript
7 lines
181 B
TypeScript
|
import { Group } from "./Group";
|
||
|
import { PointInterface } from "./Websocket/PointInterface";
|
||
|
|
||
|
export interface Userinteface {
|
||
|
group: Group,
|
||
|
pointInterface: PointInterface
|
||
|
}
|