import { IReimbursementEntity, IReimbursementExpenseEntity, IUserEntity } from "../../entities"; import { IProjectEntityGet } from "./project.entity.response"; export type IReimbursementEntityGet = { reimbursements: IReimbursementResponse[]; users: { [key: string]: IUserEntity; }; projects: IProjectEntityGet; }; export type IReimbursementFlowContextData = { expenseDetails: IReimbursementExpenseEntity[]; }; export type IReimbursementResponse = IReimbursementEntity & { expenseDetails: IReimbursementExpenseEntity[]; };