nmr-processing 10.0.0 → 10.0.2
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/lib/index.d.ts +2 -0
- package/package.json +1 -2
- package/src/index.ts +2 -0
package/lib/index.d.ts
CHANGED
|
@@ -79,6 +79,8 @@ export type { NMRZone } from './xyz/NMRZone';
|
|
|
79
79
|
export type { NMRPeak1D } from './peaks/NMRPeak1D';
|
|
80
80
|
export type { Prediction1D } from './prediction/Prediction1D';
|
|
81
81
|
export type { Prediction2D } from './prediction/Prediction2D';
|
|
82
|
+
export type { PredictionBase1D } from './prediction/PredictionBase1D';
|
|
83
|
+
export type { PredictionBase2D } from './prediction/PredictionBase2D';
|
|
82
84
|
export type { Jcoupling } from './signals/Jcoupling';
|
|
83
85
|
export type { DatabaseNMREntry } from './databases/DatabaseNMREntry';
|
|
84
86
|
export type { DataBaseLevelStructure, DataBaseStructure, } from './prediction/dataStructure';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nmr-processing",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.2",
|
|
4
4
|
"description": "Pure functions allowing to process NMR spectra.",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib-esm/index.js",
|
|
@@ -80,7 +80,6 @@
|
|
|
80
80
|
"ml-spectra-processing": "^12.5.0",
|
|
81
81
|
"ml-tree-set": "^0.1.1",
|
|
82
82
|
"nmr-correlation": "^2.3.3",
|
|
83
|
-
"nmredata": "^0.9.2",
|
|
84
83
|
"openchemlib-utils": "^4.2.1",
|
|
85
84
|
"spectrum-generator": "^8.0.8"
|
|
86
85
|
}
|
package/src/index.ts
CHANGED
|
@@ -96,6 +96,8 @@ export type { NMRZone } from './xyz/NMRZone';
|
|
|
96
96
|
export type { NMRPeak1D } from './peaks/NMRPeak1D';
|
|
97
97
|
export type { Prediction1D } from './prediction/Prediction1D';
|
|
98
98
|
export type { Prediction2D } from './prediction/Prediction2D';
|
|
99
|
+
export type { PredictionBase1D } from './prediction/PredictionBase1D';
|
|
100
|
+
export type { PredictionBase2D } from './prediction/PredictionBase2D';
|
|
99
101
|
export type { Jcoupling } from './signals/Jcoupling';
|
|
100
102
|
export type { DatabaseNMREntry } from './databases/DatabaseNMREntry';
|
|
101
103
|
export type {
|