import { GroupIdentity } from "./GroupIdentity"; import { UserIdentity } from "./UserIdentity"; export interface GroupMembers { users: UserIdentity[]; groups: GroupIdentity[]; }