import { FoodDiet } from '../../../member/food/types'; import { MatchAnalysisProfileDetails } from "../judgement"; export interface MatchReportFood { calcs: MatchReportFoodCalcs; pd: MatchReportFoodPD; ipd: MatchReportFoodIPD; } export interface MatchReportFoodCalcs { } export interface MatchReportFoodPD { diet: MatchAnalysisProfileDetails; other_diet: MatchAnalysisProfileDetails; has_food_allergy: MatchAnalysisProfileDetails; food_allergy: MatchAnalysisProfileDetails; r_disc_1: MatchAnalysisProfileDetails; } export interface MatchReportFoodIPD { diet: MatchAnalysisProfileDetails; r_disc_1: MatchAnalysisProfileDetails; r_disc_2: MatchAnalysisProfileDetails; }