nmr-processing 22.2.0 → 22.3.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.
@@ -904,6 +904,18 @@ export declare function getBaselineZonesByDietrich(data: NmrData1D, options?: Ba
904
904
 
905
905
  declare function getBonds(b: BondInput[]): BondOutput[];
906
906
 
907
+ export declare function getColumnFrom(data: Matrix, info: {
908
+ acquisitionScheme?: string;
909
+ reverse?: boolean;
910
+ index: number;
911
+ }): {
912
+ re: number[];
913
+ im: Float64Array<ArrayBuffer>;
914
+ } | {
915
+ re: Float64Array<ArrayBuffer>;
916
+ im: Float64Array<ArrayBuffer>;
917
+ };
918
+
907
919
  declare function getCouplingGroups(cg: CouplingGroupInput[]): {
908
920
  id: string;
909
921
  parentID: string;