export interface IPrediInputData { project_name: string; stored_month: IPrediStoredMonth; } export interface IPrediStoredMonth { year: number; month: number; month_name: string; days_in_stored_month: number; companies_in_total: number; EANs_in_total: number; companies: Record; } export interface IPrediCompany { trade_name: string; EAN_list: Record; } export interface IPrediEanDetail { consumption_point: string; address: string; tarif_type: string; tarif_1T2T: string; phases: string; circuit_breaker: string; location_type: string; found_in_converge_reports: string; type_B_meter: string; meter_replaced: string; daily_data_Wh_per_EAN: IPrediDailyDataPerEan; } export interface IPrediDailyDataPerEan { T1_Wh_total: number[]; T2_Wh_total: number[]; T1_plus_T2_Wh_total: number[]; T1_Wh_raw_data: Array>; T2_Wh_raw_data: Array>; }