import type { Receipt } from './receipt.entity'; /** * Fields required to create a Receipt. */ export type CreateReceiptDto = Omit; /** * Fields allowed when updating a Receipt. */ export type UpdateReceiptDto = Partial; /** * Full Receipt shape returned by the API. */ export type ReceiptResponse = Receipt; //# sourceMappingURL=receipt.dto.d.ts.map