nmr-processing 12.3.1 → 12.3.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.
@@ -2468,11 +2468,16 @@ export declare function matrixToBoxPlot(input: NumberArray[], options?: {
2468
2468
  };
2469
2469
 
2470
2470
  export declare function matrixToStocsy(matrix: NumberArray[], index: number, options?: MatrixToStocsyOptions): {
2471
- y: Float64Array;
2471
+ y: number[];
2472
+ correlations: Float64Array;
2472
2473
  color: any[];
2473
2474
  };
2474
2475
 
2475
2476
  declare interface MatrixToStocsyOptions {
2477
+ /**
2478
+ * Array of colors to use for the plot
2479
+ * @default "['blue', 'cyan', 'yellow', 'red']"
2480
+ */
2476
2481
  colors?: string[];
2477
2482
  }
2478
2483
 
@@ -3209,6 +3214,10 @@ export declare interface RangesToACSOptions {
3209
3214
  * @default '1H'
3210
3215
  */
3211
3216
  nucleus?: string;
3217
+ /**
3218
+ * Sort the chemical shift values in ascending order
3219
+ * @default false
3220
+ */
3212
3221
  ascending?: boolean;
3213
3222
  format?: string;
3214
3223
  /**