UNPKG

vendure-plugin-payment-terms

Version:

This plugin allows certain customers to pay using Payment Terms. Payment Terms are when a customer is allowed to make a payment a certain number of days after an invoice is due.

11 lines (10 loc) 260 B
declare module '@vendure/core/dist/entity/custom-entity-fields' { interface CustomCustomerFields { paymentTermsInDays?: number; paymentLimit?: number; } interface CustomOrderFields { notReminded: boolean; } } export {};