import { IClientEntity, IClientEntityChildren, IClientEntityDependent, IUserEntity } from "../../entities"; export type IClientApiEntityDependent = IClientEntity & IClientEntityDependent & IClientEntityChildren; export type IClientEntityGet = { clients: IClientApiEntityDependent[]; users: { [key: string]: IUserEntity; }; introducingPartnerIds: { [key: string]: IUserEntity; }; };