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 {
|
|
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}
|
|
11
|
-
* @param {
|
|
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
|
|
14
|
+
export declare const parseECG: (seriesId: string, metadata: MetaData, nSampling?: number) => void;
|