simpo-component-library 1.8.4 → 1.8.5
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2022/lib/ecommerce/styles/cart.modal.mjs +7 -1
- package/esm2022/lib/services/storage.service.mjs +3 -2
- package/fesm2022/simpo-component-library.mjs +8 -1
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/ecommerce/styles/cart.modal.d.ts +5 -0
- package/package.json +1 -1
- package/simpo-component-library-1.8.5.tgz +0 -0
- package/simpo-component-library-1.8.4.tgz +0 -0
@@ -9,10 +9,15 @@ export declare class Cart {
|
|
9
9
|
locationDetails: LocationDetails;
|
10
10
|
userDetails: UserDetails;
|
11
11
|
totalAmount: number;
|
12
|
+
cartType: cartType;
|
12
13
|
constructor(json: {
|
13
14
|
[key: string]: any;
|
14
15
|
}, type?: 'MAPPER' | null);
|
15
16
|
}
|
17
|
+
export declare enum cartType {
|
18
|
+
CART = "CART",
|
19
|
+
WISHLIST = "WISHLIST"
|
20
|
+
}
|
16
21
|
export interface Billdetails {
|
17
22
|
totalNetValue: number;
|
18
23
|
totalGrossValue: number;
|
package/package.json
CHANGED
Binary file
|
Binary file
|