import type { Debt } from './debt.entity'; /** * Fields required to create a Debt. * Omits `BaseEntity` audit fields. */ export type CreateDebtDto = Omit; /** * Fields allowed when updating a Debt. */ export type UpdateDebtDto = Partial; /** * Full Debt shape returned by the API. */ export type DebtResponse = Debt; //# sourceMappingURL=debt.dto.d.ts.map