export type PaymentDetail = {
  month: number;
  payment: number;
  interest: number;
  principal: number;
  balance: number;
};
