UNPKG

b-b-calculations

Version:

A cart calculation engine for buffalo burger restaurants

10 lines 270 B
export interface DiscountInput { totalNetPrice: number; loyaltyDiscount?: number; promoCodeDiscount?: number; } export interface DiscountOutput { loyaltyDiscountAmount: number; promocodeDiscountAmount: number; } //# sourceMappingURL=Discount.d.ts.map