nmr-processing 21.1.3 → 21.2.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.
@@ -1473,9 +1473,28 @@ export declare interface OptionsXYAutoPeaksPicking extends Partial<GetPeakListOp
1473
1473
  sensitivity?: number;
1474
1474
  }
1475
1475
 
1476
- declare interface OptionsXYAutoRangesPicking {
1476
+ export declare type OptionsXYAutoRangesPicking = OptionsXYAutoRangesPickingDefault | OptionsXYAutoRangesPickingCarbonDecoupled | OptionsXYAutoRangesPickingProton;
1477
+
1478
+ declare interface OptionsXYAutoRangesPickingCarbonDecoupled {
1479
+ peakPicking: OptionsXYAutoPeaksPicking;
1480
+ impurities?: PeaksMarkProtonImpuritiesOptions;
1481
+ identifyNMRSolvent?: boolean;
1482
+ identifyImpurities?: boolean;
1483
+ ranges?: OptionsPeaksToRanges;
1484
+ logger?: Logger;
1485
+ }
1486
+
1487
+ declare interface OptionsXYAutoRangesPickingDefault {
1488
+ peakPicking: OptionsXYAutoPeaksPicking;
1489
+ ranges?: OptionsPeaksToRanges;
1490
+ logger?: Logger;
1491
+ }
1492
+
1493
+ declare interface OptionsXYAutoRangesPickingProton {
1477
1494
  peakPicking: OptionsXYAutoPeaksPicking;
1478
1495
  impurities?: PeaksMarkProtonImpuritiesOptions;
1496
+ identifyResidualSolvent?: boolean;
1497
+ identifyImpurities?: boolean;
1479
1498
  ranges?: OptionsPeaksToRanges;
1480
1499
  logger?: Logger;
1481
1500
  }