import { PayrollBonusResponse } from '../../ca-period-content/models/payroll-bonus-response'; import { PayrollCreditMinimalResponse } from '../../ca-period-content/models/payroll-credit-minimal-response'; import { PayrollDeductionMinimalResponse } from '../../ca-period-content/models/payroll-deduction-minimal-response'; import { PayrollFuelMinimalResponse } from '../../ca-period-content/models/payroll-fuel-minimal-response'; import { FileResponse } from '../../../models/file-response'; export interface FormattedPeriodData { id: string; driverId?: number; driverName?: string | null; driverAvatar?: FileResponse; includedDeductions?: Array | null; includedCredits?: Array | null; includedFuels?: Array | null; bonuses?: Array | null; }