@vendure/core
Version:
A modern, headless ecommerce framework
15 lines (14 loc) • 369 B
TypeScript
import { PromotionCondition } from '../promotion-condition';
export declare const minimumOrderAmount: PromotionCondition<{
amount: {
type: "int";
defaultValue: number;
ui: {
component: string;
};
};
taxInclusive: {
type: "boolean";
defaultValue: false;
};
}, "minimum_order_amount", boolean>;