nmr-processing 22.3.0 → 22.4.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.
@@ -1215,6 +1215,7 @@ export declare type NMRSignal2DWithId = MakeMandatory<NMRSignal2D, 'id'>;
1215
1215
  export declare interface NMRZone {
1216
1216
  x: FromTo;
1217
1217
  y: FromTo;
1218
+ integration?: number;
1218
1219
  id?: string;
1219
1220
  signals: NMRSignal2D[];
1220
1221
  }
@@ -2844,6 +2845,14 @@ export declare interface XYZAutoZonesPickingOptions {
2844
2845
 
2845
2846
  export declare function xyzPhaseCorrection(data: NmrData2DFt, options: PhaseCorrectionTwoDOptions): NmrData2DFt;
2846
2847
 
2848
+ export declare function xyzZoneIntegration<T extends NMRZone>(spectraData: NmrData2DContent, zone: T): T & {
2849
+ integration: number;
2850
+ };
2851
+
2852
+ export declare function xyzZonesIntegration<T extends NMRZone>(spectraData: NmrData2DContent, zones: T[]): Array<T & {
2853
+ integration: number;
2854
+ }>;
2855
+
2847
2856
  declare type ZeroFilling = FilterFactory<Entry1D, ZeroFillingOptions> & Pick<ZeroFillingFilterOptions, 'name'>;
2848
2857
 
2849
2858
  declare type ZeroFillingDimension1 = FilterFactory<Entry2D, ZeroFillingOptions> & Pick<ZeroFillingDimension1Options, 'name'>;