webc-miam 6.4.0 → 6.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,3 @@
1
- import { EventEmitter } from '@angular/core';
2
1
  import { Observable } from 'rxjs';
3
2
  import { ComparableProduct } from './comparable-product';
4
3
 
@@ -70,7 +69,7 @@ export interface MiamInterface {
70
69
  *
71
70
  * @param total The total price of the cart paid
72
71
  */
73
- handlePayment: (total: number) => void
72
+ handlePayment: (total: number) => void;
74
73
  };
75
74
 
76
75
  // ---------------------------------------------------------------------------------------------------
@@ -167,7 +166,7 @@ export interface MiamInterface {
167
166
  * @param levels The list of labels to override for each difficulty (difficulties are respectively 1: Easy, 2: Medium, 3: Hard)
168
167
  * example : [{value: 1, label: "Beginner"}] to update the label of easy recipes to "Beginner"
169
168
  */
170
- setDifficultyLevels: (levels: { value: number, label: string }[]) => void;
169
+ setDifficultyLevels: (levels: { value: number; label: string }[]) => void;
171
170
  // /**
172
171
  // * /!\ DEPRECATED: DO NOT USE /!\
173
172
  // */