nmr-processing 22.23.7 → 22.24.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.
@@ -87,6 +87,8 @@ import type { PhaseCorrection2DOptions } from '@zakodium/nmr-types';
87
87
  import type { PhaseCorrectionTwoDFilter } from '@zakodium/nmr-types';
88
88
  import type { PhaseCorrectionTwoDOptions } from '@zakodium/nmr-types';
89
89
  import { PointXY } from 'cheminfo-types';
90
+ import type { ProcessingInfo1D } from '@zakodium/nmr-types';
91
+ import type { ProcessingInfo2D } from '@zakodium/nmr-types';
90
92
  import type { Range as Range_2 } from '@zakodium/nmr-types';
91
93
  import type { Ranges } from '@zakodium/nmr-types';
92
94
  import type { Shape1DWithFWHM } from '@zakodium/nmr-types';
@@ -727,6 +729,8 @@ declare interface Entry1D {
727
729
  info: Info1D;
728
730
  originalInfo?: Info1D;
729
731
  filters: Filter1DEntry[];
732
+ processingInfo: ProcessingInfo1D;
733
+ originalProcessingInfo: ProcessingInfo1D;
730
734
  }
731
735
 
732
736
  declare interface Entry2D<T extends NmrData2D = NmrData2D> {
@@ -738,6 +742,8 @@ declare interface Entry2D<T extends NmrData2D = NmrData2D> {
738
742
  data: T;
739
743
  originalData?: T;
740
744
  filters: Filter2DEntry[];
745
+ processingInfo: ProcessingInfo2D;
746
+ originalProcessingInfo: ProcessingInfo2D;
741
747
  }
742
748
 
743
749
  declare type EquallySpaced = FilterFactory<Entry1D, EquallySpacedFilterOptions> & Pick<EquallySpacedOptions, 'name'>;