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.
14 lines (13 loc) • 376 B
TypeScript
import { LanguageCode, PaymentMethodEligibilityChecker } from '@vendure/core';
export declare const paymentTermsEligibilityChecker: PaymentMethodEligibilityChecker<{
customerGroupId: {
type: "ID";
ui: {
component: string;
};
label: {
languageCode: LanguageCode.en;
value: string;
}[];
};
}>;