import { Invoice } from "./Invoice"; import { Payment } from "./Payment"; export interface PaymentAllocation { id: string; invoice_id: string; invoice: Invoice; payment_id: string; payment: Payment; amount: number; allocated_at: Date; }