nmr-processing 22.2.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.
- package/dist/nmr-processing.d.ts +21 -0
- package/dist/nmr-processing.js +2 -2
- package/package.json +5 -5
package/dist/nmr-processing.d.ts
CHANGED
|
@@ -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;
|
|
@@ -1203,6 +1215,7 @@ export declare type NMRSignal2DWithId = MakeMandatory<NMRSignal2D, 'id'>;
|
|
|
1203
1215
|
export declare interface NMRZone {
|
|
1204
1216
|
x: FromTo;
|
|
1205
1217
|
y: FromTo;
|
|
1218
|
+
integration?: number;
|
|
1206
1219
|
id?: string;
|
|
1207
1220
|
signals: NMRSignal2D[];
|
|
1208
1221
|
}
|
|
@@ -2832,6 +2845,14 @@ export declare interface XYZAutoZonesPickingOptions {
|
|
|
2832
2845
|
|
|
2833
2846
|
export declare function xyzPhaseCorrection(data: NmrData2DFt, options: PhaseCorrectionTwoDOptions): NmrData2DFt;
|
|
2834
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
|
+
|
|
2835
2856
|
declare type ZeroFilling = FilterFactory<Entry1D, ZeroFillingOptions> & Pick<ZeroFillingFilterOptions, 'name'>;
|
|
2836
2857
|
|
|
2837
2858
|
declare type ZeroFillingDimension1 = FilterFactory<Entry2D, ZeroFillingOptions> & Pick<ZeroFillingDimension1Options, 'name'>;
|