Skip to content

Commit

Permalink
docs: correct InstanceFrameObj type
Browse files Browse the repository at this point in the history
  • Loading branch information
Chinlinlee committed Jan 8, 2024
1 parent 3217d28 commit 7e275f2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 4 additions & 2 deletions utils/typeDef/WADO-RS/WADO-RS.def.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@
* seriesUID: string,
* instanceUID: string,
* instancePath: string,
* "00280008": string,
* "00020010": string
* "00280008": import("../dicom").DicomJsonItem,
* "00020010": import("../dicom").DicomJsonItem,
* "00281050": import("../dicom").DicomJsonItem,
* "00281051": import("../dicom").DicomJsonItem
* } } InstanceFrameObj
*/

Expand Down
6 changes: 6 additions & 0 deletions utils/typeDef/dicom.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@
* @property {boolean} [isRecycle]
*/

/**
* @typedef DicomJsonItem
* @property {string} vr
* @property {any[]} Value
*/

const DICOM = true;

module.exports.unUse = {};

0 comments on commit 7e275f2

Please sign in to comment.