import { MatchAnalysisIdealDetails, MatchAnalysisJudgement, MatchAnalysisProfileDetails } from "../judgement"; import { ConsFrequency, CigaretteFrequency } from '../../../member/cons/types'; export interface MatchReportCons { calcs: MatchReportConsCalcs; pd: MatchReportConsPD; ipd: MatchReportConsIPD; } export interface MatchReportConsCalcs { alcohol: MatchAnalysisJudgement; cigarette: MatchAnalysisJudgement; cannabis: MatchAnalysisJudgement; other_drugs: MatchAnalysisJudgement; } export interface MatchReportConsPD { r_disc_1: MatchAnalysisProfileDetails; r_disc_2: MatchAnalysisProfileDetails; r_disc_3: MatchAnalysisProfileDetails; r_disc_4: MatchAnalysisProfileDetails; r_notes: MatchAnalysisProfileDetails; } export interface MatchReportConsIPD { r_disc_1: MatchAnalysisIdealDetails; r_notes: MatchAnalysisIdealDetails; }