@zakodium/nmr-types 0.5.16 → 0.5.18
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-types.d.ts +4 -0
- package/package.json +2 -2
package/dist/nmr-types.d.ts
CHANGED
|
@@ -642,6 +642,10 @@ declare interface SelectField extends Field<any> {
|
|
|
642
642
|
choices: any[];
|
|
643
643
|
}
|
|
644
644
|
|
|
645
|
+
export declare type Shape1DWithFWHM = Omit<Shape1D, 'fwhm'> & {
|
|
646
|
+
fwhm: number;
|
|
647
|
+
};
|
|
648
|
+
|
|
645
649
|
export declare interface Shapes {
|
|
646
650
|
exponential?: ShapesFactory<ExponentialOptions>;
|
|
647
651
|
sineBell?: ShapesFactory<SineBellOptions>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zakodium/nmr-types",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.18",
|
|
4
4
|
"description": "Types related to NMR data processing.",
|
|
5
5
|
"author": "Zakodium Sàrl",
|
|
6
6
|
"license": "CC-BY-NC-SA-4.0",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"volta": {
|
|
39
39
|
"extends": "../../../package.json"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "b72b67fce506ea7ccd740a536bf4a8e9a4245a1d"
|
|
42
42
|
}
|