import { MonthEndCloseChecksPayload } from '../../entity/monthEndCloseChecks/monthEndCloseChecksPayload'; import { ZeniAPIResponse } from '../../responsePayload'; export type FetchMonthEndCloseChecksResponse = ZeniAPIResponse; export type MonthClosePerformanceTrendPayload = { audit_score_percentage: number; month_and_year: string; }; export interface MonthClosePerformanceTrendResponsePayload { performance_trend: MonthClosePerformanceTrendPayload[]; } export type FetchMonthClosePerformanceTrendResponse = ZeniAPIResponse;