nmr-processing 21.1.2 → 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.
- package/dist/nmr-processing.d.ts +22 -3
- package/dist/nmr-processing.js +2 -2
- package/package.json +3 -3
package/dist/nmr-processing.d.ts
CHANGED
|
@@ -1473,9 +1473,28 @@ export declare interface OptionsXYAutoPeaksPicking extends Partial<GetPeakListOp
|
|
|
1473
1473
|
sensitivity?: number;
|
|
1474
1474
|
}
|
|
1475
1475
|
|
|
1476
|
-
declare
|
|
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
|
-
impurities?:
|
|
1495
|
+
impurities?: PeaksMarkProtonImpuritiesOptions;
|
|
1496
|
+
identifyResidualSolvent?: boolean;
|
|
1497
|
+
identifyImpurities?: boolean;
|
|
1479
1498
|
ranges?: OptionsPeaksToRanges;
|
|
1480
1499
|
logger?: Logger;
|
|
1481
1500
|
}
|
|
@@ -1523,7 +1542,7 @@ export declare interface Peak2DSeries {
|
|
|
1523
1542
|
z: number[];
|
|
1524
1543
|
}
|
|
1525
1544
|
|
|
1526
|
-
declare interface
|
|
1545
|
+
declare interface PeaksMarkProtonImpuritiesOptions {
|
|
1527
1546
|
/**
|
|
1528
1547
|
* Frequency of the spectrometer to convert peak width from Hz to ppm
|
|
1529
1548
|
* @default 400
|