nmr-processing 22.16.1 → 22.18.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
CHANGED
|
@@ -89,6 +89,7 @@ import { PointXY } from 'cheminfo-types';
|
|
|
89
89
|
import type { Range as Range_2 } from '@zakodium/nmr-types';
|
|
90
90
|
import type { Ranges } from '@zakodium/nmr-types';
|
|
91
91
|
import type { Shape1D } from 'ml-peak-shape-generator';
|
|
92
|
+
import type { Shape1DWithFWHM } from '@zakodium/nmr-types';
|
|
92
93
|
import type { Shapes } from '@zakodium/nmr-types';
|
|
93
94
|
import type { Shift2DXFilterOptions } from '@zakodium/nmr-types';
|
|
94
95
|
import type { Shift2DYFilterOptions } from '@zakodium/nmr-types';
|
|
@@ -1307,6 +1308,11 @@ declare interface OptionsPeaksToRanges {
|
|
|
1307
1308
|
* @default 100
|
|
1308
1309
|
*/
|
|
1309
1310
|
integrationSum?: number;
|
|
1311
|
+
/**
|
|
1312
|
+
* Peak shape used to reconstruct additional or filtered peaks when compiling patterns.
|
|
1313
|
+
* @default { kind: 'gaussian' }
|
|
1314
|
+
*/
|
|
1315
|
+
shape?: Shape1D;
|
|
1310
1316
|
/**
|
|
1311
1317
|
* if it is true, it will join any overlaped ranges.
|
|
1312
1318
|
* @default true
|
|
@@ -2087,10 +2093,6 @@ declare interface SelectAnchorOptions {
|
|
|
2087
2093
|
windowSize?: number;
|
|
2088
2094
|
}
|
|
2089
2095
|
|
|
2090
|
-
declare type Shape1DWithFWHM = Omit<Shape1D, 'fwhm'> & {
|
|
2091
|
-
fwhm: number;
|
|
2092
|
-
};
|
|
2093
|
-
|
|
2094
2096
|
declare type Shift2DX = FilterFactory<Entry2D, Shift2DXOptions> & Pick<Shift2DXFilterOptions, 'name'>;
|
|
2095
2097
|
|
|
2096
2098
|
declare type Shift2DXOptions = Shift2DXFilterOptions['value'];
|