@bondsports/types 2.1.17 → 2.1.19
Sign up to get free protection for your applications and to get access to all the features.
@@ -59,7 +59,7 @@ export declare class IUserItem {
|
|
59
59
|
productId: number;
|
60
60
|
product?: Product;
|
61
61
|
totalQuantity?: number;
|
62
|
-
|
62
|
+
totalPriceWithoutTax?: number;
|
63
63
|
totalPrice?: number;
|
64
64
|
isTaxInclusive?: boolean;
|
65
65
|
percentage?: number;
|
@@ -85,6 +85,7 @@ export interface IDiscountItem {
|
|
85
85
|
amount: number;
|
86
86
|
percentage?: number;
|
87
87
|
}
|
88
|
-
export interface
|
88
|
+
export interface ISetDiscountOptions {
|
89
89
|
overrideItems?: boolean;
|
90
|
+
maxAmount?: number;
|
90
91
|
}
|