@vendure/core
Version:
A modern, headless ecommerce framework
15 lines (14 loc) • 423 B
TypeScript
import { LanguageCode } from '@vendure/common/lib/generated-types';
import { PromotionCondition } from '../promotion-condition';
export declare const customerGroup: PromotionCondition<{
customerGroupId: {
type: "ID";
ui: {
component: string;
};
label: {
languageCode: LanguageCode.en;
value: string;
}[];
};
}, "customer_group", boolean>;