nmr-processing 11.9.0 → 11.10.0

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.
@@ -166,12 +166,17 @@ declare interface BaselineZoneOptions {
166
166
  * The space (in percent) from the side that should not be considered
167
167
  * @default 0.05
168
168
  */
169
- padding?: 0.05;
169
+ padding?: number;
170
170
  /**
171
171
  * The tolerance (in percent) to select the zone in which the more points are present
172
172
  * @default 0.05
173
173
  */
174
- tolerance?: 0.05;
174
+ tolerance?: number;
175
+ /**
176
+ * The minimum width of the zones as a radio to the width
177
+ * @default 0.02
178
+ */
179
+ minWidth?: number;
175
180
  }
176
181
 
177
182
  declare interface BasePeak {