@zakodium/nmr-types 0.5.17 → 0.5.19

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.
@@ -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.17",
3
+ "version": "0.5.19",
4
4
  "description": "Types related to NMR data processing.",
5
5
  "author": "Zakodium Sàrl",
6
6
  "license": "CC-BY-NC-SA-4.0",
@@ -28,7 +28,7 @@
28
28
  "esbuild": "^0.28.1",
29
29
  "rimraf": "^6.1.3",
30
30
  "typescript": "~6.0.3",
31
- "vitest": "^4.1.9"
31
+ "vitest": "^4.1.10"
32
32
  },
33
33
  "dependencies": {
34
34
  "ml-peak-shape-generator": "^5.2.0",
@@ -38,5 +38,5 @@
38
38
  "volta": {
39
39
  "extends": "../../../package.json"
40
40
  },
41
- "gitHead": "225bb2e95be62df04269cf93e0ca91578fab2b90"
41
+ "gitHead": "e5bc3329a088c63796035427b2f26a78e8ba2fb0"
42
42
  }