nmr-processing 11.8.0 → 11.8.1
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/nmr-processing.cjs +1 -1
- package/nmr-processing.d.ts +7 -6
- package/nmr-processing.mjs +1 -1
- package/package.json +1 -1
package/nmr-processing.d.ts
CHANGED
|
@@ -244,10 +244,11 @@ export declare interface DataReIm {
|
|
|
244
244
|
}
|
|
245
245
|
|
|
246
246
|
export declare interface DataResurrect {
|
|
247
|
-
|
|
247
|
+
info: {
|
|
248
248
|
solvent?: string;
|
|
249
|
-
frequency
|
|
250
|
-
|
|
249
|
+
frequency: number;
|
|
250
|
+
dimension: 1;
|
|
251
|
+
nucleus: string;
|
|
251
252
|
};
|
|
252
253
|
ranges: NMRRange[];
|
|
253
254
|
acsString: string;
|
|
@@ -3141,12 +3142,12 @@ declare interface RestrictionByCS1D {
|
|
|
3141
3142
|
useChemicalShiftScore: boolean;
|
|
3142
3143
|
}
|
|
3143
3144
|
|
|
3144
|
-
export declare
|
|
3145
|
+
export declare function resurrect(acsString: string, options?: ResurrectOptions): DataResurrect;
|
|
3146
|
+
|
|
3147
|
+
export declare interface ResurrectOptions {
|
|
3145
3148
|
logger?: Logger;
|
|
3146
3149
|
}
|
|
3147
3150
|
|
|
3148
|
-
export declare function resurrect(acsString: string, options?: ResurectOptions): any;
|
|
3149
|
-
|
|
3150
3151
|
declare interface SelectField extends Field<any> {
|
|
3151
3152
|
type: 'select';
|
|
3152
3153
|
choices: any[];
|