@abasb75/dicom-parser 0.0.1-test → 0.0.3-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 +27 -3
- package/Dataset.js +172 -9
- package/Parser.js +1 -1
- package/Value.d.ts +7 -1
- package/Value.js +84 -4
- package/package.json +22 -15
- package/tsconfig.tsbuildinfo +1 -1
package/Dataset.d.ts
CHANGED
|
@@ -1,10 +1,34 @@
|
|
|
1
1
|
import { Tags } from "./types";
|
|
2
2
|
declare class Dataset {
|
|
3
3
|
tags: Tags;
|
|
4
|
-
arrayBuffer: ArrayBuffer;
|
|
5
4
|
transferSyntaxUID: string;
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
dataView: DataView;
|
|
6
|
+
studyInstanceUID: string;
|
|
7
|
+
studyID: string;
|
|
8
|
+
numberOfFrames: number | undefined;
|
|
9
|
+
windowWidth: number | string | undefined;
|
|
10
|
+
windowCenter: number | string | undefined;
|
|
11
|
+
seriesInstanceUID: string;
|
|
12
|
+
seriesNumber: number | string | undefined;
|
|
13
|
+
studyDate: string;
|
|
14
|
+
studyTime: number | string | undefined;
|
|
15
|
+
pixelRepresentation: number | string | undefined;
|
|
16
|
+
littleEndian: boolean;
|
|
17
|
+
pixeSpacing: number | number[] | string | undefined;
|
|
18
|
+
accessionNumber: string;
|
|
19
|
+
bitsAllocated: number | string | undefined;
|
|
20
|
+
imageType: number | string | number[] | string[] | undefined;
|
|
21
|
+
modality: number | string | number[] | string[] | undefined;
|
|
22
|
+
seriesDescription: string;
|
|
23
|
+
rows: string | number | undefined;
|
|
24
|
+
columns: string | number | undefined;
|
|
25
|
+
patientSex: any;
|
|
26
|
+
patientAge: string;
|
|
27
|
+
constructor(tags: Tags, dataView: DataView, littleEndian: boolean);
|
|
28
|
+
int(group: number, element: number): number | undefined;
|
|
29
|
+
get(group: number, element: number): string;
|
|
30
|
+
string(group: number, element: number): string;
|
|
31
|
+
getValue(element: number | string, elementId?: number | string, vr?: string): string | number | (string | number)[] | undefined;
|
|
8
32
|
private _getValue;
|
|
9
33
|
private _reformatToString;
|
|
10
34
|
}
|
package/Dataset.js
CHANGED
|
@@ -3,27 +3,190 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const Tag_1 = require("./Tag");
|
|
4
4
|
const Value_1 = require("./Value");
|
|
5
5
|
class Dataset {
|
|
6
|
-
constructor(tags,
|
|
6
|
+
constructor(tags, dataView, littleEndian) {
|
|
7
7
|
Object.defineProperty(this, "tags", {
|
|
8
8
|
enumerable: true,
|
|
9
9
|
configurable: true,
|
|
10
10
|
writable: true,
|
|
11
11
|
value: void 0
|
|
12
12
|
});
|
|
13
|
-
Object.defineProperty(this, "
|
|
13
|
+
Object.defineProperty(this, "transferSyntaxUID", {
|
|
14
|
+
enumerable: true,
|
|
15
|
+
configurable: true,
|
|
16
|
+
writable: true,
|
|
17
|
+
value: "1.2.840.10008.1.2"
|
|
18
|
+
});
|
|
19
|
+
Object.defineProperty(this, "dataView", {
|
|
14
20
|
enumerable: true,
|
|
15
21
|
configurable: true,
|
|
16
22
|
writable: true,
|
|
17
23
|
value: void 0
|
|
18
24
|
});
|
|
19
|
-
Object.defineProperty(this, "
|
|
25
|
+
Object.defineProperty(this, "studyInstanceUID", {
|
|
20
26
|
enumerable: true,
|
|
21
27
|
configurable: true,
|
|
22
28
|
writable: true,
|
|
23
|
-
value: "
|
|
29
|
+
value: ""
|
|
30
|
+
});
|
|
31
|
+
Object.defineProperty(this, "studyID", {
|
|
32
|
+
enumerable: true,
|
|
33
|
+
configurable: true,
|
|
34
|
+
writable: true,
|
|
35
|
+
value: ""
|
|
36
|
+
});
|
|
37
|
+
Object.defineProperty(this, "numberOfFrames", {
|
|
38
|
+
enumerable: true,
|
|
39
|
+
configurable: true,
|
|
40
|
+
writable: true,
|
|
41
|
+
value: void 0
|
|
42
|
+
});
|
|
43
|
+
Object.defineProperty(this, "windowWidth", {
|
|
44
|
+
enumerable: true,
|
|
45
|
+
configurable: true,
|
|
46
|
+
writable: true,
|
|
47
|
+
value: void 0
|
|
48
|
+
});
|
|
49
|
+
Object.defineProperty(this, "windowCenter", {
|
|
50
|
+
enumerable: true,
|
|
51
|
+
configurable: true,
|
|
52
|
+
writable: true,
|
|
53
|
+
value: void 0
|
|
54
|
+
});
|
|
55
|
+
Object.defineProperty(this, "seriesInstanceUID", {
|
|
56
|
+
enumerable: true,
|
|
57
|
+
configurable: true,
|
|
58
|
+
writable: true,
|
|
59
|
+
value: void 0
|
|
60
|
+
});
|
|
61
|
+
Object.defineProperty(this, "seriesNumber", {
|
|
62
|
+
enumerable: true,
|
|
63
|
+
configurable: true,
|
|
64
|
+
writable: true,
|
|
65
|
+
value: void 0
|
|
66
|
+
});
|
|
67
|
+
Object.defineProperty(this, "studyDate", {
|
|
68
|
+
enumerable: true,
|
|
69
|
+
configurable: true,
|
|
70
|
+
writable: true,
|
|
71
|
+
value: void 0
|
|
72
|
+
});
|
|
73
|
+
Object.defineProperty(this, "studyTime", {
|
|
74
|
+
enumerable: true,
|
|
75
|
+
configurable: true,
|
|
76
|
+
writable: true,
|
|
77
|
+
value: void 0
|
|
78
|
+
});
|
|
79
|
+
Object.defineProperty(this, "pixelRepresentation", {
|
|
80
|
+
enumerable: true,
|
|
81
|
+
configurable: true,
|
|
82
|
+
writable: true,
|
|
83
|
+
value: void 0
|
|
84
|
+
});
|
|
85
|
+
Object.defineProperty(this, "littleEndian", {
|
|
86
|
+
enumerable: true,
|
|
87
|
+
configurable: true,
|
|
88
|
+
writable: true,
|
|
89
|
+
value: void 0
|
|
90
|
+
});
|
|
91
|
+
Object.defineProperty(this, "pixeSpacing", {
|
|
92
|
+
enumerable: true,
|
|
93
|
+
configurable: true,
|
|
94
|
+
writable: true,
|
|
95
|
+
value: void 0
|
|
96
|
+
});
|
|
97
|
+
Object.defineProperty(this, "accessionNumber", {
|
|
98
|
+
enumerable: true,
|
|
99
|
+
configurable: true,
|
|
100
|
+
writable: true,
|
|
101
|
+
value: void 0
|
|
102
|
+
});
|
|
103
|
+
Object.defineProperty(this, "bitsAllocated", {
|
|
104
|
+
enumerable: true,
|
|
105
|
+
configurable: true,
|
|
106
|
+
writable: true,
|
|
107
|
+
value: void 0
|
|
108
|
+
});
|
|
109
|
+
Object.defineProperty(this, "imageType", {
|
|
110
|
+
enumerable: true,
|
|
111
|
+
configurable: true,
|
|
112
|
+
writable: true,
|
|
113
|
+
value: void 0
|
|
114
|
+
});
|
|
115
|
+
Object.defineProperty(this, "modality", {
|
|
116
|
+
enumerable: true,
|
|
117
|
+
configurable: true,
|
|
118
|
+
writable: true,
|
|
119
|
+
value: void 0
|
|
120
|
+
});
|
|
121
|
+
Object.defineProperty(this, "seriesDescription", {
|
|
122
|
+
enumerable: true,
|
|
123
|
+
configurable: true,
|
|
124
|
+
writable: true,
|
|
125
|
+
value: void 0
|
|
126
|
+
});
|
|
127
|
+
Object.defineProperty(this, "rows", {
|
|
128
|
+
enumerable: true,
|
|
129
|
+
configurable: true,
|
|
130
|
+
writable: true,
|
|
131
|
+
value: void 0
|
|
132
|
+
});
|
|
133
|
+
Object.defineProperty(this, "columns", {
|
|
134
|
+
enumerable: true,
|
|
135
|
+
configurable: true,
|
|
136
|
+
writable: true,
|
|
137
|
+
value: void 0
|
|
138
|
+
});
|
|
139
|
+
Object.defineProperty(this, "patientSex", {
|
|
140
|
+
enumerable: true,
|
|
141
|
+
configurable: true,
|
|
142
|
+
writable: true,
|
|
143
|
+
value: void 0
|
|
144
|
+
});
|
|
145
|
+
Object.defineProperty(this, "patientAge", {
|
|
146
|
+
enumerable: true,
|
|
147
|
+
configurable: true,
|
|
148
|
+
writable: true,
|
|
149
|
+
value: void 0
|
|
24
150
|
});
|
|
25
151
|
this.tags = tags;
|
|
26
|
-
this.
|
|
152
|
+
this.dataView = dataView;
|
|
153
|
+
this.littleEndian = littleEndian;
|
|
154
|
+
this.studyID = this.get(0x0020, 0x0010);
|
|
155
|
+
this.studyInstanceUID = this.string(0x0020, 0x000D);
|
|
156
|
+
this.numberOfFrames = this.int(0x0028, 0x0008);
|
|
157
|
+
this.windowWidth = this.get(0x0028, 0x1050);
|
|
158
|
+
this.windowCenter = this.get(0x0028, 0x1051);
|
|
159
|
+
this.seriesInstanceUID = this.get(0x0020, 0x000E);
|
|
160
|
+
this.seriesNumber = this.get(0x0020, 0x0011);
|
|
161
|
+
this.studyDate = this.get(0x0008, 0x0020);
|
|
162
|
+
this.studyTime = this.get(0x0008, 0x0030);
|
|
163
|
+
this.pixelRepresentation = this.get(0x0028, 0x0103);
|
|
164
|
+
this.pixeSpacing = this.get(0x0028, 0x0030);
|
|
165
|
+
this.accessionNumber = this.string(0x0008, 0x0050);
|
|
166
|
+
this.bitsAllocated = this.get(0x0028, 0x0100);
|
|
167
|
+
this.imageType = this.get(0x0008, 0x0008);
|
|
168
|
+
this.modality = this.get(0x0008, 0x0060);
|
|
169
|
+
this.seriesDescription = this.string(0x0008, 0x103E);
|
|
170
|
+
this.patientSex = this.get(0x0010, 0x0040);
|
|
171
|
+
this.rows = this.get(0x0028, 0x0010);
|
|
172
|
+
this.columns = this.get(0x0028, 0x0011);
|
|
173
|
+
this.patientAge = this.get(0x0010, 0x1010);
|
|
174
|
+
}
|
|
175
|
+
int(group, element) {
|
|
176
|
+
const is = this.getValue(group, element, "IS");
|
|
177
|
+
if (typeof is === "number") {
|
|
178
|
+
return is;
|
|
179
|
+
}
|
|
180
|
+
else {
|
|
181
|
+
return undefined;
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
get(group, element) {
|
|
185
|
+
const value = this.getValue(group, element);
|
|
186
|
+
return value;
|
|
187
|
+
}
|
|
188
|
+
string(group, element) {
|
|
189
|
+
return this.getValue(group, element) + "";
|
|
27
190
|
}
|
|
28
191
|
getValue(element, elementId, vr) {
|
|
29
192
|
var _a;
|
|
@@ -47,7 +210,7 @@ class Dataset {
|
|
|
47
210
|
else {
|
|
48
211
|
_group = this._reformatToString(element);
|
|
49
212
|
_element = this._reformatToString(elementId);
|
|
50
|
-
if (!_group || _element)
|
|
213
|
+
if (!_group || !_element)
|
|
51
214
|
return "";
|
|
52
215
|
}
|
|
53
216
|
const key = `0x${_group}${_element}`;
|
|
@@ -62,9 +225,9 @@ class Dataset {
|
|
|
62
225
|
if (!offset)
|
|
63
226
|
return "";
|
|
64
227
|
const len = tag.valueLength;
|
|
65
|
-
const value =
|
|
66
|
-
|
|
67
|
-
|
|
228
|
+
const value = Value_1.default.byVr(this.dataView, offset, len, vr, this.littleEndian);
|
|
229
|
+
tag.value = value;
|
|
230
|
+
return value;
|
|
68
231
|
}
|
|
69
232
|
_reformatToString(input) {
|
|
70
233
|
if (!input)
|
package/Parser.js
CHANGED
|
@@ -119,7 +119,7 @@ class Parser {
|
|
|
119
119
|
}
|
|
120
120
|
parse() {
|
|
121
121
|
this.getNextTag();
|
|
122
|
-
this.dataSet = new Dataset_1.default(this.tags, this.
|
|
122
|
+
this.dataSet = new Dataset_1.default(this.tags, this.dataView, this.littleEndian);
|
|
123
123
|
console.log(this.dataSet);
|
|
124
124
|
this.dataSet.transferSyntaxUID = this.transferSyntaxUID;
|
|
125
125
|
return this.dataSet;
|
package/Value.d.ts
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
declare class Value {
|
|
2
|
-
static byVr(
|
|
2
|
+
static byVr(dataView: DataView, offset: number, len: number, vr: string, littleEndian: boolean): string | number | (string | number)[] | undefined;
|
|
3
|
+
static CS(dataView: DataView, offset: number, len: number): string | string[];
|
|
4
|
+
static IS(dataView: DataView, offset: number, len: number): string | number;
|
|
5
|
+
static DA(dataView: DataView, offset: number, len: number): string;
|
|
6
|
+
static DS(dataView: DataView, offset: number, len: number): string | number | (string | number)[];
|
|
7
|
+
static TM(dataView: DataView, offset: number, len: number): string;
|
|
3
8
|
static getString(bytes: Uint8Array | Int8Array | ArrayBuffer): string;
|
|
9
|
+
static US(dataView: DataView, offset: number, len: number, littleEndian?: boolean): number | undefined;
|
|
4
10
|
}
|
|
5
11
|
export default Value;
|
package/Value.js
CHANGED
|
@@ -1,16 +1,96 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
class Value {
|
|
4
|
-
static byVr(
|
|
4
|
+
static byVr(dataView, offset, len, vr, littleEndian) {
|
|
5
5
|
switch (vr) {
|
|
6
|
-
case "
|
|
6
|
+
case "CS":
|
|
7
|
+
return Value.CS(dataView, offset, len);
|
|
8
|
+
case "US":
|
|
9
|
+
return Value.US(dataView, offset, len, littleEndian);
|
|
10
|
+
case "IS":
|
|
11
|
+
return Value.IS(dataView, offset, len);
|
|
12
|
+
case "DS":
|
|
13
|
+
return Value.DS(dataView, offset, len);
|
|
14
|
+
case "DA":
|
|
15
|
+
return Value.DA(dataView, offset, len);
|
|
16
|
+
case "TM":
|
|
17
|
+
return Value.TM(dataView, offset, len);
|
|
18
|
+
case "UI":
|
|
19
|
+
case "SH":
|
|
20
|
+
case "LO":
|
|
7
21
|
default:
|
|
8
|
-
return Value.getString(
|
|
22
|
+
return Value.getString(new Uint8Array(dataView.buffer, offset, len));
|
|
9
23
|
}
|
|
10
24
|
}
|
|
25
|
+
static CS(dataView, offset, len) {
|
|
26
|
+
let value = Value.getString(new Uint8Array(dataView.buffer, offset, len));
|
|
27
|
+
const values = value.split("\\");
|
|
28
|
+
if (values.length === 0) {
|
|
29
|
+
return value;
|
|
30
|
+
}
|
|
31
|
+
else if (values.length === 1) {
|
|
32
|
+
return values[0];
|
|
33
|
+
}
|
|
34
|
+
else {
|
|
35
|
+
return values;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
static IS(dataView, offset, len) {
|
|
39
|
+
const value = Value.getString(new Uint8Array(dataView.buffer, offset, len));
|
|
40
|
+
if (/^[0-9]+$/.exec(value)) {
|
|
41
|
+
return parseInt(value);
|
|
42
|
+
}
|
|
43
|
+
return value;
|
|
44
|
+
}
|
|
45
|
+
static DA(dataView, offset, len) {
|
|
46
|
+
const value = Value.getString(new Uint8Array(dataView.buffer, offset, len));
|
|
47
|
+
if (/^[0-9]{8}$/.exec(value)) {
|
|
48
|
+
return `${value.slice(0, 4)}-${value.slice(4, 6)}-${value.slice(6, 8)}`;
|
|
49
|
+
}
|
|
50
|
+
return value;
|
|
51
|
+
}
|
|
52
|
+
static DS(dataView, offset, len) {
|
|
53
|
+
let value = Value.getString(new Uint8Array(dataView.buffer, offset, len));
|
|
54
|
+
const values = value.split("\\").map(v => {
|
|
55
|
+
if (/^[0-9]+$/.exec(v)) {
|
|
56
|
+
return parseInt(v);
|
|
57
|
+
}
|
|
58
|
+
else if (/^[0-9]+\.[0-9]+$/.exec(v)) {
|
|
59
|
+
return parseFloat(v);
|
|
60
|
+
}
|
|
61
|
+
return v;
|
|
62
|
+
});
|
|
63
|
+
if (values.length === 0) {
|
|
64
|
+
return value;
|
|
65
|
+
}
|
|
66
|
+
else if (values.length === 1) {
|
|
67
|
+
return values[0];
|
|
68
|
+
}
|
|
69
|
+
else {
|
|
70
|
+
return values;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
static TM(dataView, offset, len) {
|
|
74
|
+
let value = Value.getString(new Uint8Array(dataView.buffer, offset, len)).trim().split('.')[0];
|
|
75
|
+
if (![2, 4, 6].includes(value.length)) {
|
|
76
|
+
return value;
|
|
77
|
+
}
|
|
78
|
+
if (value.length === 4) {
|
|
79
|
+
value += "00";
|
|
80
|
+
}
|
|
81
|
+
else if (value.length === 2) {
|
|
82
|
+
value += "0000";
|
|
83
|
+
}
|
|
84
|
+
return `${value.slice(0, 2)}:${value.slice(2, 4)}:${value.slice(4, 6)}`;
|
|
85
|
+
}
|
|
11
86
|
static getString(bytes) {
|
|
12
87
|
const decoder = new TextDecoder();
|
|
13
|
-
return decoder.decode(bytes);
|
|
88
|
+
return decoder.decode(bytes).trim();
|
|
89
|
+
}
|
|
90
|
+
static US(dataView, offset, len, littleEndian = true) {
|
|
91
|
+
if (len === 2) {
|
|
92
|
+
return dataView.getUint16(offset, littleEndian);
|
|
93
|
+
}
|
|
14
94
|
}
|
|
15
95
|
}
|
|
16
96
|
exports.default = Value;
|
package/package.json
CHANGED
|
@@ -1,27 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abasb75/dicom-parser",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "a powerfull dicom parser",
|
|
3
|
+
"version": "0.0.3-test",
|
|
4
|
+
"description": "a javascript powerfull dicom parser",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"types": "index.d.ts",
|
|
8
8
|
"keywords": [
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
9
|
+
"dicom",
|
|
10
|
+
"dcm",
|
|
11
|
+
"dcmjs",
|
|
12
|
+
"dicom-parser",
|
|
13
|
+
"pacs"
|
|
14
14
|
],
|
|
15
15
|
"author": "Abbas Bagheri <abasbagheria@gmail.com>",
|
|
16
16
|
"license": "ISC",
|
|
17
17
|
"repository": {
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/abasb75/dicom-parser/raction.git"
|
|
20
20
|
},
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/abasb75/dicom-parser/issues"
|
|
23
23
|
},
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
24
|
+
"homepage": "https://github.com/abasb75/dicom-parser#readme",
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"pako": "^2.1.0"
|
|
27
|
+
},
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"pako": "^2.1.0"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"pako": "^2.1.0"
|
|
33
|
+
}
|
|
34
|
+
}
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -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":"6727125ff84341a961d2cb05986b1dff0cc5b8bfe867f4397a24dc46f32f9a64","signature":"959931c33d1d503c7a670bc3044ae1f2c80f647d7bedfd7f58c2badd51927591"},{"version":"f8f659c3b0f336fc360a8604c7c64328ec58c6df95024766d65a6febf142a02d","signature":"735d34369ba5d1295c1dde93ef8878318db5e9e2be2d783a711ae61d1a8887f8"},{"version":"822d0d13ed61a78119c9810a41bf7d0237d6a114e67a2b22cb401cb52865edf9","signature":"60fb41ec4978f3e2b3e0abd4dc304bc54a404a862999cf5af78aeaacb32a2840"},{"version":"32f9f84ef917e854b4b034645f85a7e03a69548b0846a7dbb00a6b4801c8046f","signature":"7083058286797f935bc66ce1274db6767cfe3bdd675fdb199b695d01c36b8857"},{"version":"c634df3e1b52761b2a219edcc61d0a7f748cdc54b93d73bcb817619452a6388a","impliedFormat":1},{"version":"cba773fac77c882c88882c15b493410a5145eb7a917eb5425a311f9d09f34161","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/@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"}
|