larvitar 3.6.4 → 3.6.5

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.
@@ -2,14 +2,13 @@
2
2
  * @desc This file provides functionalities for
3
3
  * handling ECG signales in DICOM files
4
4
  */
5
- import { DataSet } from "dicom-parser";
5
+ import { MetaData } from "../types";
6
6
  /**
7
7
  * Generate an array of points representing the ECG signal
8
- * @instance
9
8
  * @function parseECG
10
- * @param {DataSet} dataSet - the DICOM dataset
11
- * @param {String} tag - the tag of the ECG signal
9
+ * @param {DataSet} seriesId - the series ID to which the ECG data belongs
10
+ * @param {MetaData} metadata - the metadata object containing the ECG signal data
12
11
  * @param {Number} nSampling - the sampling rate
13
12
  * @returns {void}
14
13
  */
15
- export declare function parseECG(seriesId: string, dataSet: DataSet, tag: string, nSampling?: number): void;
14
+ export declare const parseECG: (seriesId: string, metadata: MetaData, nSampling?: number) => void;