import { FetchStateAndError, ID } from '../../commonStateTypes/common'; import { MonthYearPeriod, MonthYearPeriodId } from '../../commonStateTypes/timePeriod'; export interface MonthClosePerformanceTrend { auditScore: number; period: MonthYearPeriod; } export interface MonthEndCloseChecksViewState { monthClosePerformanceTrend: Record; monthClosePerformanceTrendFetchStatus: Record; monthEndCloseChecksViewByTenantId: Record>; refreshStatus: FetchStateAndError; }