Skip to content

Commit

Permalink
Add doc type
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmartel committed Jul 23, 2024
1 parent 95d8eea commit b531afc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/dicom/dicomMeasuredValue.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import {
// doc imports
/* eslint-disable no-unused-vars */
import {DataElement} from './dataElement';
import {DicomCode} from './dicomCode';
/* eslint-enable no-unused-vars */

/**
Expand Down Expand Up @@ -46,7 +47,7 @@ export class MeasuredValue {
rationalDenominatorValue;

/**
* @type {object}
* @type {DicomCode}
*/
measurementUnitsCode;

Expand Down
6 changes: 4 additions & 2 deletions src/dicom/dicomNumericMeasurement.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ import {
// doc imports
/* eslint-disable no-unused-vars */
import {DataElement} from './dataElement';
import {MeasuredValue} from './dicomMeasuredValue';
import {DicomCode} from './dicomCode';
/* eslint-enable no-unused-vars */

/**
Expand All @@ -27,12 +29,12 @@ const TagKeys = {
*/
export class NumericMeasurement {
/**
* @type {object}
* @type {MeasuredValue}
*/
measuredValue;

/**
* @type {object}
* @type {DicomCode}
*/
numericValueQualifierCode;

Expand Down

0 comments on commit b531afc

Please sign in to comment.