@abasb75/dicom-parser 0.0.3-test → 0.0.5-test

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/Dataset.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Tags } from "./types";
1
+ import { DicomDate, DicomTime, Tags } from "./types";
2
2
  declare class Dataset {
3
3
  tags: Tags;
4
4
  transferSyntaxUID: string;
@@ -10,8 +10,8 @@ declare class Dataset {
10
10
  windowCenter: number | string | undefined;
11
11
  seriesInstanceUID: string;
12
12
  seriesNumber: number | string | undefined;
13
- studyDate: string;
14
- studyTime: number | string | undefined;
13
+ studyDate: string | DicomDate;
14
+ studyTime: number | DicomTime | string | undefined;
15
15
  pixelRepresentation: number | string | undefined;
16
16
  littleEndian: boolean;
17
17
  pixeSpacing: number | number[] | string | undefined;
@@ -25,6 +25,16 @@ declare class Dataset {
25
25
  patientSex: any;
26
26
  patientAge: string;
27
27
  constructor(tags: Tags, dataView: DataView, littleEndian: boolean);
28
+ date(group: number, element: number): string | {
29
+ year: string;
30
+ month: string;
31
+ day: string;
32
+ };
33
+ time(group: number, element: number): string | {
34
+ hour: string;
35
+ minute: string;
36
+ second: string;
37
+ };
28
38
  int(group: number, element: number): number | undefined;
29
39
  get(group: number, element: number): string;
30
40
  string(group: number, element: number): string;
package/Dataset.js CHANGED
@@ -1,7 +1,5 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const Tag_1 = require("./Tag");
4
- const Value_1 = require("./Value");
1
+ import Tag from "./Tag";
2
+ import Value from "./Value";
5
3
  class Dataset {
6
4
  constructor(tags, dataView, littleEndian) {
7
5
  Object.defineProperty(this, "tags", {
@@ -158,8 +156,8 @@ class Dataset {
158
156
  this.windowCenter = this.get(0x0028, 0x1051);
159
157
  this.seriesInstanceUID = this.get(0x0020, 0x000E);
160
158
  this.seriesNumber = this.get(0x0020, 0x0011);
161
- this.studyDate = this.get(0x0008, 0x0020);
162
- this.studyTime = this.get(0x0008, 0x0030);
159
+ this.studyDate = this.date(0x0008, 0x0020);
160
+ this.studyTime = this.time(0x0008, 0x0030);
163
161
  this.pixelRepresentation = this.get(0x0028, 0x0103);
164
162
  this.pixeSpacing = this.get(0x0028, 0x0030);
165
163
  this.accessionNumber = this.string(0x0008, 0x0050);
@@ -172,6 +170,34 @@ class Dataset {
172
170
  this.columns = this.get(0x0028, 0x0011);
173
171
  this.patientAge = this.get(0x0010, 0x1010);
174
172
  }
173
+ date(group, element) {
174
+ const dateValue = this.get(group, element);
175
+ if (/^[0-9]{4}\-[0-9]{2}\-[0-9]{2}$/.exec(dateValue)) {
176
+ console.log('dateValue1', dateValue);
177
+ const dateVaues = dateValue.split('-');
178
+ return {
179
+ year: dateVaues[0],
180
+ month: dateVaues[1],
181
+ day: dateVaues[2],
182
+ };
183
+ }
184
+ console.log('dateValue', dateValue);
185
+ return dateValue;
186
+ }
187
+ time(group, element) {
188
+ const dateValue = this.get(group, element);
189
+ if (/^[0-9]{2}\:[0-9]{2}\:[0-9]{2}$/.exec(dateValue)) {
190
+ console.log('dateValue1', dateValue);
191
+ const dateVaues = dateValue.split(':');
192
+ return {
193
+ hour: dateVaues[0],
194
+ minute: dateVaues[1],
195
+ second: dateVaues[2],
196
+ };
197
+ }
198
+ console.log('dateValue', dateValue);
199
+ return dateValue;
200
+ }
175
201
  int(group, element) {
176
202
  const is = this.getValue(group, element, "IS");
177
203
  if (typeof is === "number") {
@@ -203,7 +229,7 @@ class Dataset {
203
229
  _element = el.slice(4, 7);
204
230
  }
205
231
  else if (typeof element === 'number' && element > 0xffff) {
206
- const el = Tag_1.default.intTo4digitString(element);
232
+ const el = Tag.intTo4digitString(element);
207
233
  _group = el.slice(0, 3);
208
234
  _element = el.slice(4, 7);
209
235
  }
@@ -217,7 +243,7 @@ class Dataset {
217
243
  if (!this.tags[key]) {
218
244
  return "";
219
245
  }
220
- const _vr = vr || ((_a = this.tags[key]) === null || _a === void 0 ? void 0 : _a.vr) || Tag_1.default.getTagVRFromDictionary(_group, _element) || "AA";
246
+ const _vr = vr || ((_a = this.tags[key]) === null || _a === void 0 ? void 0 : _a.vr) || Tag.getTagVRFromDictionary(_group, _element) || "AA";
221
247
  return this._getValue(this.tags[key], _vr);
222
248
  }
223
249
  _getValue(tag, vr = "AA") {
@@ -225,7 +251,7 @@ class Dataset {
225
251
  if (!offset)
226
252
  return "";
227
253
  const len = tag.valueLength;
228
- const value = Value_1.default.byVr(this.dataView, offset, len, vr, this.littleEndian);
254
+ const value = Value.byVr(this.dataView, offset, len, vr, this.littleEndian);
229
255
  tag.value = value;
230
256
  return value;
231
257
  }
@@ -235,7 +261,7 @@ class Dataset {
235
261
  if (typeof input === "string") {
236
262
  return input.replace(/^0[xX]/, '');
237
263
  }
238
- return Tag_1.default.intTo4digitString(input);
264
+ return Tag.intTo4digitString(input);
239
265
  }
240
266
  }
241
- exports.default = Dataset;
267
+ export default Dataset;
package/Loader.js CHANGED
@@ -1,4 +1,3 @@
1
- "use strict";
2
1
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
2
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
3
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -8,7 +7,6 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
8
7
  step((generator = generator.apply(thisArg, _arguments || [])).next());
9
8
  });
10
9
  };
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
10
  class Loader {
13
11
  constructor(dicomSrc) {
14
12
  Object.defineProperty(this, "dicomSrc", {
@@ -62,4 +60,4 @@ class Loader {
62
60
  this.xhr.abort();
63
61
  }
64
62
  }
65
- exports.default = Loader;
63
+ export default Loader;
package/Parser.js CHANGED
@@ -1,9 +1,7 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const Dataset_1 = require("./Dataset");
4
- const Tag_1 = require("./Tag");
5
- const Value_1 = require("./Value");
6
- const pako = require("pako");
1
+ import Dataset from "./Dataset";
2
+ import Tag from "./Tag";
3
+ import Value from "./Value";
4
+ import * as pako from "pako";
7
5
  class Parser {
8
6
  constructor(arrayBuffer) {
9
7
  Object.defineProperty(this, "arrayBuffer", {
@@ -109,7 +107,7 @@ class Parser {
109
107
  console.error("is not valid dicom file");
110
108
  return;
111
109
  }
112
- const prefix = Value_1.default.getString(new Uint8Array(arrayBuffer, 128, 4));
110
+ const prefix = Value.getString(new Uint8Array(arrayBuffer, 128, 4));
113
111
  if (prefix !== 'DICM') {
114
112
  console.error("is not valid dicom file");
115
113
  return;
@@ -119,7 +117,7 @@ class Parser {
119
117
  }
120
118
  parse() {
121
119
  this.getNextTag();
122
- this.dataSet = new Dataset_1.default(this.tags, this.dataView, this.littleEndian);
120
+ this.dataSet = new Dataset(this.tags, this.dataView, this.littleEndian);
123
121
  console.log(this.dataSet);
124
122
  this.dataSet.transferSyntaxUID = this.transferSyntaxUID;
125
123
  return this.dataSet;
@@ -183,9 +181,9 @@ class Parser {
183
181
  }
184
182
  if (group === 0x0002 && element === 0x0010) {
185
183
  console.log("transfer syntax uid", this.transferSyntaxUID);
186
- this.transferSyntaxUID = (Value_1.default.getString(new Uint8Array(this.arrayBuffer, this.offset, len))).replace('\0', '');
184
+ this.transferSyntaxUID = (Value.getString(new Uint8Array(this.arrayBuffer, this.offset, len))).replace('\0', '');
187
185
  }
188
- const tag = new Tag_1.default(group, element, vr, len, this.offset);
186
+ const tag = new Tag(group, element, vr, len, this.offset);
189
187
  const key = tag.generateKey();
190
188
  this.tags[key] = tag;
191
189
  if (vr === "SQ") {
@@ -215,11 +213,11 @@ class Parser {
215
213
  }
216
214
  getNextVR(groupInt, elementInt) {
217
215
  if (this.implicit) {
218
- return Tag_1.default.getTagVRFromDictionary(groupInt, elementInt) || "AA";
216
+ return Tag.getTagVRFromDictionary(groupInt, elementInt) || "AA";
219
217
  }
220
- const vr = Value_1.default.getString(new Uint8Array(this.arrayBuffer, this.offset, 2));
218
+ const vr = Value.getString(new Uint8Array(this.arrayBuffer, this.offset, 2));
221
219
  this.offset += 2;
222
220
  return vr;
223
221
  }
224
222
  }
225
- exports.default = Parser;
223
+ export default Parser;
package/README.md CHANGED
@@ -1,11 +1,15 @@
1
1
  # @abasb75/dicom-parser
2
2
 
3
3
  ```sh
4
- npm i @abasb75/dicom-parser --save
4
+ npm i @abasb75/dicom-parser pako --save
5
+ npm i @types/pako --save-dev
5
6
  ```
6
7
 
8
+ # Demo
7
9
 
8
- #Usage
10
+ <a href="https://abasb75.github.io/dicom-parser/">demo link</a>
11
+
12
+ # Usage
9
13
 
10
14
  1. For Download dicom and parse from url:
11
15
 
package/Tag.js CHANGED
@@ -1,6 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const TagsDictionary_1 = require("./enums/TagsDictionary");
1
+ import TagsDictionaryEnums from "./enums/TagsDictionary";
4
2
  class Tag {
5
3
  constructor(group, element, vr, valueLength, offset, value, name) {
6
4
  Object.defineProperty(this, "name", {
@@ -63,7 +61,7 @@ class Tag {
63
61
  static getTagNameFromDictionary(groupInt, elementInt) {
64
62
  const group = Tag.intTo4digitString(groupInt);
65
63
  const element = Tag.intTo4digitString(elementInt);
66
- const groupItems = TagsDictionary_1.default[group];
64
+ const groupItems = TagsDictionaryEnums[group];
67
65
  if (!groupItems)
68
66
  return "";
69
67
  const elementItem = groupItems[element];
@@ -79,7 +77,7 @@ class Tag {
79
77
  if (typeof element === "number") {
80
78
  _element = Tag.intTo4digitString(element);
81
79
  }
82
- const groupItems = TagsDictionary_1.default[_group || group];
80
+ const groupItems = TagsDictionaryEnums[_group || group];
83
81
  if (!groupItems)
84
82
  return "";
85
83
  const elementItem = groupItems[_element || element];
@@ -96,4 +94,4 @@ class Tag {
96
94
  getValue() {
97
95
  }
98
96
  }
99
- exports.default = Tag;
97
+ export default Tag;
package/Value.js CHANGED
@@ -1,5 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
1
  class Value {
4
2
  static byVr(dataView, offset, len, vr, littleEndian) {
5
3
  switch (vr) {
@@ -93,4 +91,4 @@ class Value {
93
91
  }
94
92
  }
95
93
  }
96
- exports.default = Value;
94
+ export default Value;
@@ -1,5 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
1
  const TagsDictionaryEnums = {
4
2
  "0002": {
5
3
  "0000": ["UL", "FileMetaInformationGroupLength"],
@@ -3609,4 +3607,4 @@ const TagsDictionaryEnums = {
3609
3607
  "0010": ["OB", "PixelData"],
3610
3608
  }
3611
3609
  };
3612
- exports.default = TagsDictionaryEnums;
3610
+ export default TagsDictionaryEnums;
@@ -1,5 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
1
  const TransferSyntaxEnums = {
4
2
  TRANSFER_SYNTAX_IMPLICIT_LITTLE: "1.2.840.10008.1.2",
5
3
  TRANSFER_SYNTAX_EXPLICIT_LITTLE: "1.2.840.10008.1.2.1",
@@ -16,4 +14,4 @@ const TransferSyntaxEnums = {
16
14
  TRANSFER_SYNTAX_COMPRESSION_RLE: "1.2.840.10008.1.2.5",
17
15
  TRANSFER_SYNTAX_COMPRESSION_DEFLATE: "1.2.840.10008.1.2.1.99",
18
16
  };
19
- exports.default = TransferSyntaxEnums;
17
+ export default TransferSyntaxEnums;
@@ -1,4 +1,2 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
1
  const ValueRepresentationsEnums = {};
4
- exports.default = ValueRepresentationsEnums;
2
+ export default ValueRepresentationsEnums;
package/enums/index.js CHANGED
@@ -1,11 +1,9 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const TransferSyntax_1 = require("./TransferSyntax");
4
- const TagsDictionary_1 = require("./TagsDictionary");
5
- const ValueRepresentations_1 = require("./ValueRepresentations");
1
+ import TransferSyntax from "./TransferSyntax";
2
+ import TagsDictionary from "./TagsDictionary";
3
+ import ValueRepresentations from "./ValueRepresentations";
6
4
  const AppEnums = {
7
- TransferSyntax: TransferSyntax_1.default,
8
- TagsDictionary: TagsDictionary_1.default,
9
- ValueRepresentations: ValueRepresentations_1.default,
5
+ TransferSyntax,
6
+ TagsDictionary,
7
+ ValueRepresentations,
10
8
  };
11
- exports.default = AppEnums;
9
+ export default AppEnums;
package/index.js CHANGED
@@ -1,19 +1,14 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.loadAndParseFromUrl = loadAndParseFromUrl;
4
- exports.loadAndParseFromFiles = loadAndParseFromFiles;
5
- exports.parse = parse;
6
- const Loader_1 = require("./Loader");
7
- const Parser_1 = require("./Parser");
8
- function loadAndParseFromUrl(url) {
1
+ import Loader from "./Loader";
2
+ import Parser from "./Parser";
3
+ export function loadAndParseFromUrl(url) {
9
4
  return new Promise((resolve, reject) => {
10
- const loader = new Loader_1.default();
5
+ const loader = new Loader();
11
6
  loader.load(url).then((dicomBuffer) => {
12
7
  if (!dicomBuffer) {
13
8
  reject('Error on loading file!');
14
9
  return;
15
10
  }
16
- const parser = new Parser_1.default(dicomBuffer);
11
+ const parser = new Parser(dicomBuffer);
17
12
  const dataset = parser.getDataset();
18
13
  if (!dataset) {
19
14
  reject('Error on parsing data');
@@ -23,15 +18,15 @@ function loadAndParseFromUrl(url) {
23
18
  });
24
19
  });
25
20
  }
26
- function loadAndParseFromFiles(file) {
21
+ export function loadAndParseFromFiles(file) {
27
22
  return new Promise((resolve, reject) => {
28
- const loader = new Loader_1.default();
23
+ const loader = new Loader();
29
24
  loader.load(file).then((dicomBuffer) => {
30
25
  if (!dicomBuffer) {
31
26
  reject('Error on loading file!');
32
27
  return;
33
28
  }
34
- const parser = new Parser_1.default(dicomBuffer);
29
+ const parser = new Parser(dicomBuffer);
35
30
  const dataset = parser.getDataset();
36
31
  if (!dataset) {
37
32
  reject('Error on parsing data');
@@ -41,12 +36,12 @@ function loadAndParseFromFiles(file) {
41
36
  });
42
37
  });
43
38
  }
44
- function parse(dicomBuffer) {
45
- const parser = new Parser_1.default(dicomBuffer);
39
+ export function parse(dicomBuffer) {
40
+ const parser = new Parser(dicomBuffer);
46
41
  const dataset = parser.getDataset();
47
42
  return dataset;
48
43
  }
49
- exports.default = {
44
+ export default {
50
45
  parse,
51
46
  loadAndParseFromFiles,
52
47
  loadAndParseFromUrl,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abasb75/dicom-parser",
3
- "version": "0.0.3-test",
3
+ "version": "0.0.5-test",
4
4
  "description": "a javascript powerfull dicom parser",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -29,6 +29,7 @@
29
29
  "pako": "^2.1.0"
30
30
  },
31
31
  "devDependencies": {
32
- "pako": "^2.1.0"
32
+ "pako": "^2.1.0",
33
+ "@types/pako": "^2.0.3"
33
34
  }
34
35
  }
@@ -1 +1 @@
1
- {"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../lib/enums/TagsDictionary.ts","../lib/Tag.ts","../lib/Value.ts","../lib/types.ts","../lib/Dataset.ts","../lib/Loader.ts","../node_modules/@types/pako/index.d.ts","../lib/Parser.ts","../lib/index.ts","../lib/enums/TransferSyntax.ts","../lib/enums/ValueRepresentations.ts","../lib/enums/index.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/prop-types/index.d.ts","../node_modules/@types/react/global.d.ts","../node_modules/csstype/index.d.ts","../node_modules/@types/react/index.d.ts","../node_modules/@types/react-dom/index.d.ts"],"fileIdsList":[[48,49,50],[48,49,50,51,53],[47],[47,56,57],[51,52,54],[48],[59],[59,60,61,62,63],[59,61],[70],[67,68,69]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"9e8ca8ed051c2697578c023d9c29d6df689a083561feba5c14aedee895853999","affectsGlobalScope":true,"impliedFormat":1},{"version":"69e65d976bf166ce4a9e6f6c18f94d2424bf116e90837ace179610dbccad9b42","affectsGlobalScope":true,"impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a54cf04ef34193424ed4374da8b8300c3f05829fe02f21d00a8c9f2dda13965","signature":"b124ca3b0b6e48c7ae570631e8af5f9587cd0000865693dd1325cb3163d92e8f"},{"version":"7746e02e44db43052b746d21998931cfb9af842a9e54053f467cd48a041bb830","signature":"1509f37c18c1c390bc2f0a08511625572c613ad7e53bcca00e02016ecfea1ff3"},{"version":"1d1895d49be4ada1a967f2f2f99d9ceb73b9fd3f283114bf1b39edf5c08524e8","signature":"29da1fa0bfca74d228fb5e95b5d4a824d6f489fb24262cd4e8539591ced9967c"},{"version":"f8f659c3b0f336fc360a8604c7c64328ec58c6df95024766d65a6febf142a02d","signature":"735d34369ba5d1295c1dde93ef8878318db5e9e2be2d783a711ae61d1a8887f8"},{"version":"130d9a8b709cb2dd6b6fd5d15a8dc9919041e4afa06c455b9b461e09350b4af3","signature":"66effe24e406929759b5deb592cd1e878590718a2869fd62957e4592127c347d"},{"version":"32f9f84ef917e854b4b034645f85a7e03a69548b0846a7dbb00a6b4801c8046f","signature":"7083058286797f935bc66ce1274db6767cfe3bdd675fdb199b695d01c36b8857"},{"version":"c634df3e1b52761b2a219edcc61d0a7f748cdc54b93d73bcb817619452a6388a","impliedFormat":1},{"version":"d0df8bed22bd18d627936dbc1540241869a24e7df8aa94e06285efdd5a2df4a5","signature":"8d568074d2bdf70de874a842f07ad08c3e4af007902a9f05a646183b1895d796"},{"version":"3aa25c0ae1cb6e6084a349e0a005dac5c575152aa0796dfa393bd445deef1887","signature":"44d6d909bc8629077cb14adc03ea3224c33cd013a841b04b88d2e0f485cae669"},{"version":"c68e5454d34ab562a6c66c01c4cc0ff39fe0723eae7fa8c95ae971bcf210660a","signature":"0792e447fd7b9f38b2e024f0eff028360b349808f095ce1447e12630b7c51ba5"},{"version":"dd0a75aaecb752ffbcbdb9f3ba2f4e902c02116424eec0d7eff0f0f18da0ed51","signature":"20efc731db8ebf52d9aca41a6ba5b043f2892d1609a1a6d1dddfb3bc9d793195"},{"version":"d9165616db0fddaae02047917430126ea9ef81695f9b20ed301e6f0f9484a3f8","signature":"316a713040ee41af01a42db63819f6f529877e99471de6759d64ca9c8e64ea5f"},{"version":"03f1d83d61696326ea29c8a1c15cbaccf61e92598d53f2ccae06078531f42448","impliedFormat":1},{"version":"2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","impliedFormat":1},{"version":"3a9313fe5ace558b8b18e85f931da10b259e738775f411c061e5f15787b138eb","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"9e0cf651e8e2c5b9bebbabdff2f7c6f8cedd91b1d9afcc0a854cdff053a88f1b","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"785b9d575b49124ce01b46f5b9402157c7611e6532effa562ac6aebec0074dfc","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"ed6b820c54de95b2510bb673490d61c7f2187f532a339d8d04981645a918961f","impliedFormat":1},{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"aa17748c522bd586f8712b1a308ea23af59c309b2fd278f6d4f406647c72e659","affectsGlobalScope":true,"impliedFormat":1},{"version":"17ed71200119e86ccef2d96b73b02ce8854b76ad6bd21b5021d4269bec527b5f","impliedFormat":1}],"root":[[47,52],[54,58]],"options":{"allowImportingTsExtensions":false,"composite":true,"module":1,"noFallthroughCasesInSwitch":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"strict":true,"target":2,"useDefineForClassFields":true},"referencedMap":[[51,1],[54,2],[48,3],[58,4],[55,5],[50,6],[61,7],[64,8],[60,7],[62,9],[63,7],[71,10],[70,11]],"latestChangedDtsFile":"./enums/index.d.ts","version":"5.6.3"}
1
+ {"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../lib/enums/TagsDictionary.ts","../lib/Tag.ts","../lib/Value.ts","../lib/types.ts","../lib/Dataset.ts","../lib/Loader.ts","../node_modules/@types/pako/index.d.ts","../lib/Parser.ts","../lib/index.ts","../lib/enums/TransferSyntax.ts","../lib/enums/ValueRepresentations.ts","../lib/enums/index.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/prop-types/index.d.ts","../node_modules/@types/react/global.d.ts","../node_modules/@types/react/index.d.ts","../node_modules/@types/react-dom/index.d.ts"],"fileIdsList":[[48,49,50],[48,49,50,51,53],[47],[47,56,57],[51,52,54],[48,51],[59,60,61],[67],[65,66]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"9e8ca8ed051c2697578c023d9c29d6df689a083561feba5c14aedee895853999","affectsGlobalScope":true,"impliedFormat":1},{"version":"69e65d976bf166ce4a9e6f6c18f94d2424bf116e90837ace179610dbccad9b42","affectsGlobalScope":true,"impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a54cf04ef34193424ed4374da8b8300c3f05829fe02f21d00a8c9f2dda13965","signature":"b124ca3b0b6e48c7ae570631e8af5f9587cd0000865693dd1325cb3163d92e8f"},{"version":"7746e02e44db43052b746d21998931cfb9af842a9e54053f467cd48a041bb830","signature":"1509f37c18c1c390bc2f0a08511625572c613ad7e53bcca00e02016ecfea1ff3"},{"version":"1d1895d49be4ada1a967f2f2f99d9ceb73b9fd3f283114bf1b39edf5c08524e8","signature":"29da1fa0bfca74d228fb5e95b5d4a824d6f489fb24262cd4e8539591ced9967c"},{"version":"e5ee0794032930d603dd16e167ef8a2a67f0c7a6b12fbb70562503d9016a8556","signature":"a87c379bd318aa8228d5c6006588efc013b49de675158c35a663f3b0b4eede93"},{"version":"45488a63fbc62f4032e5ea63771a5ca1c0d049cb4d37ca043fa309f80401b8f2","signature":"8896effe8b17933356e4e522b229af2a135eb36b81e28eee4182b04b465d1bcc"},{"version":"32f9f84ef917e854b4b034645f85a7e03a69548b0846a7dbb00a6b4801c8046f","signature":"7083058286797f935bc66ce1274db6767cfe3bdd675fdb199b695d01c36b8857"},{"version":"c634df3e1b52761b2a219edcc61d0a7f748cdc54b93d73bcb817619452a6388a","impliedFormat":1},{"version":"d0df8bed22bd18d627936dbc1540241869a24e7df8aa94e06285efdd5a2df4a5","signature":"8d568074d2bdf70de874a842f07ad08c3e4af007902a9f05a646183b1895d796"},{"version":"3aa25c0ae1cb6e6084a349e0a005dac5c575152aa0796dfa393bd445deef1887","signature":"44d6d909bc8629077cb14adc03ea3224c33cd013a841b04b88d2e0f485cae669"},{"version":"c68e5454d34ab562a6c66c01c4cc0ff39fe0723eae7fa8c95ae971bcf210660a","signature":"0792e447fd7b9f38b2e024f0eff028360b349808f095ce1447e12630b7c51ba5"},{"version":"dd0a75aaecb752ffbcbdb9f3ba2f4e902c02116424eec0d7eff0f0f18da0ed51","signature":"20efc731db8ebf52d9aca41a6ba5b043f2892d1609a1a6d1dddfb3bc9d793195"},{"version":"d9165616db0fddaae02047917430126ea9ef81695f9b20ed301e6f0f9484a3f8","signature":"316a713040ee41af01a42db63819f6f529877e99471de6759d64ca9c8e64ea5f"},{"version":"2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"9e0cf651e8e2c5b9bebbabdff2f7c6f8cedd91b1d9afcc0a854cdff053a88f1b","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"785b9d575b49124ce01b46f5b9402157c7611e6532effa562ac6aebec0074dfc","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"ed6b820c54de95b2510bb673490d61c7f2187f532a339d8d04981645a918961f","impliedFormat":1},{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true,"impliedFormat":1},{"version":"aa17748c522bd586f8712b1a308ea23af59c309b2fd278f6d4f406647c72e659","affectsGlobalScope":true,"impliedFormat":1},{"version":"17ed71200119e86ccef2d96b73b02ce8854b76ad6bd21b5021d4269bec527b5f","impliedFormat":1}],"root":[[47,52],[54,58]],"options":{"allowImportingTsExtensions":false,"composite":true,"noFallthroughCasesInSwitch":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"strict":true,"target":2,"useDefineForClassFields":true},"referencedMap":[[51,1],[54,2],[48,3],[58,4],[55,5],[50,6],[62,7],[68,8],[67,9]],"latestChangedDtsFile":"./Dataset.d.ts","version":"5.6.3"}
package/types.d.ts CHANGED
@@ -1,5 +1,19 @@
1
+ import Dataset from "./Dataset";
1
2
  import Tag from "./Tag";
2
3
  interface Tags {
3
4
  [key: string]: Tag;
4
5
  }
5
- export type { Tags, };
6
+ interface DicomDate {
7
+ year: string | number;
8
+ month: string | number;
9
+ day: string | number;
10
+ }
11
+ interface DicomTime {
12
+ hour: string | number;
13
+ minute: string | number;
14
+ second: string | number;
15
+ }
16
+ interface DicomDateTime extends DicomDate, DicomTime {
17
+ }
18
+ type DicomDataset = Dataset;
19
+ export type { Tags, DicomTime, DicomDate, DicomDateTime, DicomDataset, };
package/types.js CHANGED
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};