nmr-processing 14.0.0 → 14.0.1-pre.1732082478
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 +3 -3
- package/nmr-processing.d.ts +12 -2
- package/nmr-processing.mjs +3 -3
- package/package.json +1 -1
package/nmr-processing.d.ts
CHANGED
|
@@ -418,9 +418,19 @@ export declare interface DirectDimensionOptions {
|
|
|
418
418
|
|
|
419
419
|
declare type EmptyValue = void | undefined | null;
|
|
420
420
|
|
|
421
|
-
declare function enableFilter(datum: Entry1D, id: string
|
|
421
|
+
declare function enableFilter(datum: Entry1D, id: string, options: EnableFilterOptions): void;
|
|
422
422
|
|
|
423
|
-
declare function enableFilter_2(datum: Entry2D, id: string
|
|
423
|
+
declare function enableFilter_2(datum: Entry2D, id: string, options: EnableFilterOptions_2): void;
|
|
424
|
+
|
|
425
|
+
declare interface EnableFilterOptions {
|
|
426
|
+
enabled?: boolean;
|
|
427
|
+
filters?: Filter1DOptions[];
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
declare interface EnableFilterOptions_2 {
|
|
431
|
+
enabled?: boolean;
|
|
432
|
+
filters?: Filter2DOptions[];
|
|
433
|
+
}
|
|
424
434
|
|
|
425
435
|
declare interface Entry1D {
|
|
426
436
|
id?: string;
|