nmr-processing 11.7.1 → 11.8.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.
@@ -3141,7 +3141,11 @@ declare interface RestrictionByCS1D {
3141
3141
  useChemicalShiftScore: boolean;
3142
3142
  }
3143
3143
 
3144
- export declare function resurrect(acsString: string): any;
3144
+ export declare interface ResurectOptions {
3145
+ logger?: Logger;
3146
+ }
3147
+
3148
+ export declare function resurrect(acsString: string, options?: ResurectOptions): any;
3145
3149
 
3146
3150
  declare interface SelectField extends Field<any> {
3147
3151
  type: 'select';