import { MatchAnalysisJudgement, MatchAnalysisProfileDetails, MatchAnalysisIdealDetails } from "../judgement"; import { RelationshipType } from "../../../ideal_profile/love/types"; export interface MatchReportLove { calcs: MatchReportLoveCalcs; pd: MatchReportLovePD; ipd: MatchReportLoveIPD; } export interface MatchReportLoveCalcs { relationship_type: MatchAnalysisJudgement; } export interface MatchReportLovePD { r_disc_1: MatchAnalysisProfileDetails; r_disc_2: MatchAnalysisProfileDetails; r_notes: MatchAnalysisProfileDetails; } export interface MatchReportLoveIPD { r_disc_1: MatchAnalysisIdealDetails; }