import type { InvoiceTemplate } from './invoice-template.entity'; /** * Fields required to create an InvoiceTemplate. * Omits `BaseEntity` audit fields. */ export type CreateInvoiceTemplateDto = Omit; /** * Fields allowed when updating an InvoiceTemplate. */ export type UpdateInvoiceTemplateDto = Partial; /** * Full InvoiceTemplate shape returned by the API. */ export type InvoiceTemplateResponse = InvoiceTemplate; //# sourceMappingURL=invoice-template.dto.d.ts.map