@openreplay/tracker 3.6.3 → 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.
- package/.eslintignore +8 -0
- package/cjs/app/guards.js +1 -2
- package/cjs/app/index.d.ts +15 -13
- package/cjs/app/index.js +56 -40
- package/cjs/app/logger.js +6 -3
- package/cjs/app/observer/iframe_observer.d.ts +1 -1
- package/cjs/app/observer/iframe_observer.js +1 -1
- package/cjs/app/observer/observer.d.ts +2 -3
- package/cjs/app/observer/observer.js +38 -40
- package/cjs/app/observer/shadow_root_observer.d.ts +1 -1
- package/cjs/app/observer/shadow_root_observer.js +1 -1
- package/cjs/app/observer/top_observer.d.ts +2 -2
- package/cjs/app/observer/top_observer.js +12 -11
- package/cjs/app/sanitizer.d.ts +1 -1
- package/cjs/app/sanitizer.js +5 -5
- package/cjs/app/session.d.ts +14 -2
- package/cjs/app/session.js +19 -6
- package/cjs/app/ticker.d.ts +1 -1
- package/cjs/common/messages.d.ts +1 -1
- package/cjs/common/messages.js +69 -120
- package/cjs/common/webworker.d.ts +3 -3
- package/cjs/index.d.ts +9 -8
- package/cjs/index.js +34 -28
- package/cjs/modules/connection.d.ts +1 -1
- package/cjs/modules/console.d.ts +1 -1
- package/cjs/modules/console.js +5 -5
- package/cjs/modules/cssrules.d.ts +1 -1
- package/cjs/modules/cssrules.js +3 -3
- package/cjs/modules/exception.d.ts +2 -2
- package/cjs/modules/exception.js +7 -6
- package/cjs/modules/img.d.ts +1 -1
- package/cjs/modules/img.js +15 -12
- package/cjs/modules/input.d.ts +1 -1
- package/cjs/modules/input.js +15 -15
- package/cjs/modules/longtasks.d.ts +1 -1
- package/cjs/modules/longtasks.js +13 -5
- package/cjs/modules/mouse.d.ts +1 -1
- package/cjs/modules/mouse.js +10 -12
- package/cjs/modules/performance.d.ts +1 -1
- package/cjs/modules/scroll.d.ts +1 -1
- package/cjs/modules/timing.d.ts +1 -1
- package/cjs/modules/timing.js +12 -24
- package/cjs/modules/viewport.d.ts +1 -1
- package/cjs/utils.js +7 -7
- package/cjs/vendors/finder/finder.js +53 -48
- package/lib/app/guards.js +1 -2
- package/lib/app/index.d.ts +15 -13
- package/lib/app/index.js +65 -49
- package/lib/app/logger.js +6 -3
- package/lib/app/observer/iframe_observer.d.ts +1 -1
- package/lib/app/observer/iframe_observer.js +3 -3
- package/lib/app/observer/observer.d.ts +2 -3
- package/lib/app/observer/observer.js +40 -42
- package/lib/app/observer/shadow_root_observer.d.ts +1 -1
- package/lib/app/observer/shadow_root_observer.js +3 -3
- package/lib/app/observer/top_observer.d.ts +2 -2
- package/lib/app/observer/top_observer.js +17 -16
- package/lib/app/sanitizer.d.ts +1 -1
- package/lib/app/sanitizer.js +7 -7
- package/lib/app/session.d.ts +14 -2
- package/lib/app/session.js +19 -6
- package/lib/app/ticker.d.ts +1 -1
- package/lib/common/messages.d.ts +1 -1
- package/lib/common/messages.js +69 -120
- package/lib/common/tsconfig.tsbuildinfo +1 -1
- package/lib/common/webworker.d.ts +3 -3
- package/lib/index.d.ts +9 -8
- package/lib/index.js +49 -43
- package/lib/modules/connection.d.ts +1 -1
- package/lib/modules/connection.js +1 -1
- package/lib/modules/console.d.ts +1 -1
- package/lib/modules/console.js +8 -8
- package/lib/modules/cssrules.d.ts +1 -1
- package/lib/modules/cssrules.js +5 -5
- package/lib/modules/exception.d.ts +2 -2
- package/lib/modules/exception.js +8 -7
- package/lib/modules/img.d.ts +1 -1
- package/lib/modules/img.js +18 -15
- package/lib/modules/input.d.ts +1 -1
- package/lib/modules/input.js +18 -18
- package/lib/modules/longtasks.d.ts +1 -1
- package/lib/modules/longtasks.js +14 -6
- package/lib/modules/mouse.d.ts +1 -1
- package/lib/modules/mouse.js +14 -16
- package/lib/modules/performance.d.ts +1 -1
- package/lib/modules/performance.js +2 -2
- package/lib/modules/scroll.d.ts +1 -1
- package/lib/modules/scroll.js +2 -2
- package/lib/modules/timing.d.ts +1 -1
- package/lib/modules/timing.js +15 -27
- package/lib/modules/viewport.d.ts +1 -1
- package/lib/modules/viewport.js +1 -1
- package/lib/utils.js +7 -7
- package/lib/vendors/finder/finder.js +53 -48
- package/package.json +28 -10
package/lib/common/messages.js
CHANGED
|
@@ -14,10 +14,10 @@ class _BatchMeta {
|
|
|
14
14
|
this._id = 80;
|
|
15
15
|
}
|
|
16
16
|
encode(writer) {
|
|
17
|
-
return writer.uint(80) &&
|
|
17
|
+
return (writer.uint(80) &&
|
|
18
18
|
writer.uint(this.pageNo) &&
|
|
19
19
|
writer.uint(this.firstIndex) &&
|
|
20
|
-
writer.int(this.timestamp);
|
|
20
|
+
writer.int(this.timestamp));
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
export const BatchMeta = bindNew(_BatchMeta);
|
|
@@ -28,8 +28,7 @@ class _Timestamp {
|
|
|
28
28
|
this._id = 0;
|
|
29
29
|
}
|
|
30
30
|
encode(writer) {
|
|
31
|
-
return writer.uint(0) &&
|
|
32
|
-
writer.uint(this.timestamp);
|
|
31
|
+
return writer.uint(0) && writer.uint(this.timestamp);
|
|
33
32
|
}
|
|
34
33
|
}
|
|
35
34
|
export const Timestamp = bindNew(_Timestamp);
|
|
@@ -42,10 +41,10 @@ class _SetPageLocation {
|
|
|
42
41
|
this._id = 4;
|
|
43
42
|
}
|
|
44
43
|
encode(writer) {
|
|
45
|
-
return writer.uint(4) &&
|
|
44
|
+
return (writer.uint(4) &&
|
|
46
45
|
writer.string(this.url) &&
|
|
47
46
|
writer.string(this.referrer) &&
|
|
48
|
-
writer.uint(this.navigationStart);
|
|
47
|
+
writer.uint(this.navigationStart));
|
|
49
48
|
}
|
|
50
49
|
}
|
|
51
50
|
export const SetPageLocation = bindNew(_SetPageLocation);
|
|
@@ -57,9 +56,7 @@ class _SetViewportSize {
|
|
|
57
56
|
this._id = 5;
|
|
58
57
|
}
|
|
59
58
|
encode(writer) {
|
|
60
|
-
return writer.uint(5) &&
|
|
61
|
-
writer.uint(this.width) &&
|
|
62
|
-
writer.uint(this.height);
|
|
59
|
+
return writer.uint(5) && writer.uint(this.width) && writer.uint(this.height);
|
|
63
60
|
}
|
|
64
61
|
}
|
|
65
62
|
export const SetViewportSize = bindNew(_SetViewportSize);
|
|
@@ -71,9 +68,7 @@ class _SetViewportScroll {
|
|
|
71
68
|
this._id = 6;
|
|
72
69
|
}
|
|
73
70
|
encode(writer) {
|
|
74
|
-
return writer.uint(6) &&
|
|
75
|
-
writer.int(this.x) &&
|
|
76
|
-
writer.int(this.y);
|
|
71
|
+
return writer.uint(6) && writer.int(this.x) && writer.int(this.y);
|
|
77
72
|
}
|
|
78
73
|
}
|
|
79
74
|
export const SetViewportScroll = bindNew(_SetViewportScroll);
|
|
@@ -98,12 +93,12 @@ class _CreateElementNode {
|
|
|
98
93
|
this._id = 8;
|
|
99
94
|
}
|
|
100
95
|
encode(writer) {
|
|
101
|
-
return writer.uint(8) &&
|
|
96
|
+
return (writer.uint(8) &&
|
|
102
97
|
writer.uint(this.id) &&
|
|
103
98
|
writer.uint(this.parentID) &&
|
|
104
99
|
writer.uint(this.index) &&
|
|
105
100
|
writer.string(this.tag) &&
|
|
106
|
-
writer.boolean(this.svg);
|
|
101
|
+
writer.boolean(this.svg));
|
|
107
102
|
}
|
|
108
103
|
}
|
|
109
104
|
export const CreateElementNode = bindNew(_CreateElementNode);
|
|
@@ -116,10 +111,10 @@ class _CreateTextNode {
|
|
|
116
111
|
this._id = 9;
|
|
117
112
|
}
|
|
118
113
|
encode(writer) {
|
|
119
|
-
return writer.uint(9) &&
|
|
114
|
+
return (writer.uint(9) &&
|
|
120
115
|
writer.uint(this.id) &&
|
|
121
116
|
writer.uint(this.parentID) &&
|
|
122
|
-
writer.uint(this.index);
|
|
117
|
+
writer.uint(this.index));
|
|
123
118
|
}
|
|
124
119
|
}
|
|
125
120
|
export const CreateTextNode = bindNew(_CreateTextNode);
|
|
@@ -132,10 +127,10 @@ class _MoveNode {
|
|
|
132
127
|
this._id = 10;
|
|
133
128
|
}
|
|
134
129
|
encode(writer) {
|
|
135
|
-
return writer.uint(10) &&
|
|
130
|
+
return (writer.uint(10) &&
|
|
136
131
|
writer.uint(this.id) &&
|
|
137
132
|
writer.uint(this.parentID) &&
|
|
138
|
-
writer.uint(this.index);
|
|
133
|
+
writer.uint(this.index));
|
|
139
134
|
}
|
|
140
135
|
}
|
|
141
136
|
export const MoveNode = bindNew(_MoveNode);
|
|
@@ -146,8 +141,7 @@ class _RemoveNode {
|
|
|
146
141
|
this._id = 11;
|
|
147
142
|
}
|
|
148
143
|
encode(writer) {
|
|
149
|
-
return writer.uint(11) &&
|
|
150
|
-
writer.uint(this.id);
|
|
144
|
+
return writer.uint(11) && writer.uint(this.id);
|
|
151
145
|
}
|
|
152
146
|
}
|
|
153
147
|
export const RemoveNode = bindNew(_RemoveNode);
|
|
@@ -160,10 +154,10 @@ class _SetNodeAttribute {
|
|
|
160
154
|
this._id = 12;
|
|
161
155
|
}
|
|
162
156
|
encode(writer) {
|
|
163
|
-
return writer.uint(12) &&
|
|
157
|
+
return (writer.uint(12) &&
|
|
164
158
|
writer.uint(this.id) &&
|
|
165
159
|
writer.string(this.name) &&
|
|
166
|
-
writer.string(this.value);
|
|
160
|
+
writer.string(this.value));
|
|
167
161
|
}
|
|
168
162
|
}
|
|
169
163
|
export const SetNodeAttribute = bindNew(_SetNodeAttribute);
|
|
@@ -175,9 +169,7 @@ class _RemoveNodeAttribute {
|
|
|
175
169
|
this._id = 13;
|
|
176
170
|
}
|
|
177
171
|
encode(writer) {
|
|
178
|
-
return writer.uint(13) &&
|
|
179
|
-
writer.uint(this.id) &&
|
|
180
|
-
writer.string(this.name);
|
|
172
|
+
return writer.uint(13) && writer.uint(this.id) && writer.string(this.name);
|
|
181
173
|
}
|
|
182
174
|
}
|
|
183
175
|
export const RemoveNodeAttribute = bindNew(_RemoveNodeAttribute);
|
|
@@ -189,9 +181,7 @@ class _SetNodeData {
|
|
|
189
181
|
this._id = 14;
|
|
190
182
|
}
|
|
191
183
|
encode(writer) {
|
|
192
|
-
return writer.uint(14) &&
|
|
193
|
-
writer.uint(this.id) &&
|
|
194
|
-
writer.string(this.data);
|
|
184
|
+
return writer.uint(14) && writer.uint(this.id) && writer.string(this.data);
|
|
195
185
|
}
|
|
196
186
|
}
|
|
197
187
|
export const SetNodeData = bindNew(_SetNodeData);
|
|
@@ -204,10 +194,7 @@ class _SetNodeScroll {
|
|
|
204
194
|
this._id = 16;
|
|
205
195
|
}
|
|
206
196
|
encode(writer) {
|
|
207
|
-
return writer.uint(16) &&
|
|
208
|
-
writer.uint(this.id) &&
|
|
209
|
-
writer.int(this.x) &&
|
|
210
|
-
writer.int(this.y);
|
|
197
|
+
return writer.uint(16) && writer.uint(this.id) && writer.int(this.x) && writer.int(this.y);
|
|
211
198
|
}
|
|
212
199
|
}
|
|
213
200
|
export const SetNodeScroll = bindNew(_SetNodeScroll);
|
|
@@ -219,9 +206,7 @@ class _SetInputTarget {
|
|
|
219
206
|
this._id = 17;
|
|
220
207
|
}
|
|
221
208
|
encode(writer) {
|
|
222
|
-
return writer.uint(17) &&
|
|
223
|
-
writer.uint(this.id) &&
|
|
224
|
-
writer.string(this.label);
|
|
209
|
+
return writer.uint(17) && writer.uint(this.id) && writer.string(this.label);
|
|
225
210
|
}
|
|
226
211
|
}
|
|
227
212
|
export const SetInputTarget = bindNew(_SetInputTarget);
|
|
@@ -234,10 +219,7 @@ class _SetInputValue {
|
|
|
234
219
|
this._id = 18;
|
|
235
220
|
}
|
|
236
221
|
encode(writer) {
|
|
237
|
-
return writer.uint(18) &&
|
|
238
|
-
writer.uint(this.id) &&
|
|
239
|
-
writer.string(this.value) &&
|
|
240
|
-
writer.int(this.mask);
|
|
222
|
+
return (writer.uint(18) && writer.uint(this.id) && writer.string(this.value) && writer.int(this.mask));
|
|
241
223
|
}
|
|
242
224
|
}
|
|
243
225
|
export const SetInputValue = bindNew(_SetInputValue);
|
|
@@ -249,9 +231,7 @@ class _SetInputChecked {
|
|
|
249
231
|
this._id = 19;
|
|
250
232
|
}
|
|
251
233
|
encode(writer) {
|
|
252
|
-
return writer.uint(19) &&
|
|
253
|
-
writer.uint(this.id) &&
|
|
254
|
-
writer.boolean(this.checked);
|
|
234
|
+
return writer.uint(19) && writer.uint(this.id) && writer.boolean(this.checked);
|
|
255
235
|
}
|
|
256
236
|
}
|
|
257
237
|
export const SetInputChecked = bindNew(_SetInputChecked);
|
|
@@ -263,9 +243,7 @@ class _MouseMove {
|
|
|
263
243
|
this._id = 20;
|
|
264
244
|
}
|
|
265
245
|
encode(writer) {
|
|
266
|
-
return writer.uint(20) &&
|
|
267
|
-
writer.uint(this.x) &&
|
|
268
|
-
writer.uint(this.y);
|
|
246
|
+
return writer.uint(20) && writer.uint(this.x) && writer.uint(this.y);
|
|
269
247
|
}
|
|
270
248
|
}
|
|
271
249
|
export const MouseMove = bindNew(_MouseMove);
|
|
@@ -277,9 +255,7 @@ class _ConsoleLog {
|
|
|
277
255
|
this._id = 22;
|
|
278
256
|
}
|
|
279
257
|
encode(writer) {
|
|
280
|
-
return writer.uint(22) &&
|
|
281
|
-
writer.string(this.level) &&
|
|
282
|
-
writer.string(this.value);
|
|
258
|
+
return writer.uint(22) && writer.string(this.level) && writer.string(this.value);
|
|
283
259
|
}
|
|
284
260
|
}
|
|
285
261
|
export const ConsoleLog = bindNew(_ConsoleLog);
|
|
@@ -298,7 +274,7 @@ class _PageLoadTiming {
|
|
|
298
274
|
this._id = 23;
|
|
299
275
|
}
|
|
300
276
|
encode(writer) {
|
|
301
|
-
return writer.uint(23) &&
|
|
277
|
+
return (writer.uint(23) &&
|
|
302
278
|
writer.uint(this.requestStart) &&
|
|
303
279
|
writer.uint(this.responseStart) &&
|
|
304
280
|
writer.uint(this.responseEnd) &&
|
|
@@ -307,7 +283,7 @@ class _PageLoadTiming {
|
|
|
307
283
|
writer.uint(this.loadEventStart) &&
|
|
308
284
|
writer.uint(this.loadEventEnd) &&
|
|
309
285
|
writer.uint(this.firstPaint) &&
|
|
310
|
-
writer.uint(this.firstContentfulPaint);
|
|
286
|
+
writer.uint(this.firstContentfulPaint));
|
|
311
287
|
}
|
|
312
288
|
}
|
|
313
289
|
export const PageLoadTiming = bindNew(_PageLoadTiming);
|
|
@@ -320,10 +296,10 @@ class _PageRenderTiming {
|
|
|
320
296
|
this._id = 24;
|
|
321
297
|
}
|
|
322
298
|
encode(writer) {
|
|
323
|
-
return writer.uint(24) &&
|
|
299
|
+
return (writer.uint(24) &&
|
|
324
300
|
writer.uint(this.speedIndex) &&
|
|
325
301
|
writer.uint(this.visuallyComplete) &&
|
|
326
|
-
writer.uint(this.timeToInteractive);
|
|
302
|
+
writer.uint(this.timeToInteractive));
|
|
327
303
|
}
|
|
328
304
|
}
|
|
329
305
|
export const PageRenderTiming = bindNew(_PageRenderTiming);
|
|
@@ -336,10 +312,10 @@ class _JSException {
|
|
|
336
312
|
this._id = 25;
|
|
337
313
|
}
|
|
338
314
|
encode(writer) {
|
|
339
|
-
return writer.uint(25) &&
|
|
315
|
+
return (writer.uint(25) &&
|
|
340
316
|
writer.string(this.name) &&
|
|
341
317
|
writer.string(this.message) &&
|
|
342
|
-
writer.string(this.payload);
|
|
318
|
+
writer.string(this.payload));
|
|
343
319
|
}
|
|
344
320
|
}
|
|
345
321
|
export const JSException = bindNew(_JSException);
|
|
@@ -351,9 +327,7 @@ class _RawCustomEvent {
|
|
|
351
327
|
this._id = 27;
|
|
352
328
|
}
|
|
353
329
|
encode(writer) {
|
|
354
|
-
return writer.uint(27) &&
|
|
355
|
-
writer.string(this.name) &&
|
|
356
|
-
writer.string(this.payload);
|
|
330
|
+
return writer.uint(27) && writer.string(this.name) && writer.string(this.payload);
|
|
357
331
|
}
|
|
358
332
|
}
|
|
359
333
|
export const RawCustomEvent = bindNew(_RawCustomEvent);
|
|
@@ -364,8 +338,7 @@ class _UserID {
|
|
|
364
338
|
this._id = 28;
|
|
365
339
|
}
|
|
366
340
|
encode(writer) {
|
|
367
|
-
return writer.uint(28) &&
|
|
368
|
-
writer.string(this.id);
|
|
341
|
+
return writer.uint(28) && writer.string(this.id);
|
|
369
342
|
}
|
|
370
343
|
}
|
|
371
344
|
export const UserID = bindNew(_UserID);
|
|
@@ -376,8 +349,7 @@ class _UserAnonymousID {
|
|
|
376
349
|
this._id = 29;
|
|
377
350
|
}
|
|
378
351
|
encode(writer) {
|
|
379
|
-
return writer.uint(29) &&
|
|
380
|
-
writer.string(this.id);
|
|
352
|
+
return writer.uint(29) && writer.string(this.id);
|
|
381
353
|
}
|
|
382
354
|
}
|
|
383
355
|
export const UserAnonymousID = bindNew(_UserAnonymousID);
|
|
@@ -389,9 +361,7 @@ class _Metadata {
|
|
|
389
361
|
this._id = 30;
|
|
390
362
|
}
|
|
391
363
|
encode(writer) {
|
|
392
|
-
return writer.uint(30) &&
|
|
393
|
-
writer.string(this.key) &&
|
|
394
|
-
writer.string(this.value);
|
|
364
|
+
return writer.uint(30) && writer.string(this.key) && writer.string(this.value);
|
|
395
365
|
}
|
|
396
366
|
}
|
|
397
367
|
export const Metadata = bindNew(_Metadata);
|
|
@@ -404,10 +374,7 @@ class _CSSInsertRule {
|
|
|
404
374
|
this._id = 37;
|
|
405
375
|
}
|
|
406
376
|
encode(writer) {
|
|
407
|
-
return writer.uint(37) &&
|
|
408
|
-
writer.uint(this.id) &&
|
|
409
|
-
writer.string(this.rule) &&
|
|
410
|
-
writer.uint(this.index);
|
|
377
|
+
return (writer.uint(37) && writer.uint(this.id) && writer.string(this.rule) && writer.uint(this.index));
|
|
411
378
|
}
|
|
412
379
|
}
|
|
413
380
|
export const CSSInsertRule = bindNew(_CSSInsertRule);
|
|
@@ -419,9 +386,7 @@ class _CSSDeleteRule {
|
|
|
419
386
|
this._id = 38;
|
|
420
387
|
}
|
|
421
388
|
encode(writer) {
|
|
422
|
-
return writer.uint(38) &&
|
|
423
|
-
writer.uint(this.id) &&
|
|
424
|
-
writer.uint(this.index);
|
|
389
|
+
return writer.uint(38) && writer.uint(this.id) && writer.uint(this.index);
|
|
425
390
|
}
|
|
426
391
|
}
|
|
427
392
|
export const CSSDeleteRule = bindNew(_CSSDeleteRule);
|
|
@@ -438,14 +403,14 @@ class _Fetch {
|
|
|
438
403
|
this._id = 39;
|
|
439
404
|
}
|
|
440
405
|
encode(writer) {
|
|
441
|
-
return writer.uint(39) &&
|
|
406
|
+
return (writer.uint(39) &&
|
|
442
407
|
writer.string(this.method) &&
|
|
443
408
|
writer.string(this.url) &&
|
|
444
409
|
writer.string(this.request) &&
|
|
445
410
|
writer.string(this.response) &&
|
|
446
411
|
writer.uint(this.status) &&
|
|
447
412
|
writer.uint(this.timestamp) &&
|
|
448
|
-
writer.uint(this.duration);
|
|
413
|
+
writer.uint(this.duration));
|
|
449
414
|
}
|
|
450
415
|
}
|
|
451
416
|
export const Fetch = bindNew(_Fetch);
|
|
@@ -459,11 +424,11 @@ class _Profiler {
|
|
|
459
424
|
this._id = 40;
|
|
460
425
|
}
|
|
461
426
|
encode(writer) {
|
|
462
|
-
return writer.uint(40) &&
|
|
427
|
+
return (writer.uint(40) &&
|
|
463
428
|
writer.string(this.name) &&
|
|
464
429
|
writer.uint(this.duration) &&
|
|
465
430
|
writer.string(this.args) &&
|
|
466
|
-
writer.string(this.result);
|
|
431
|
+
writer.string(this.result));
|
|
467
432
|
}
|
|
468
433
|
}
|
|
469
434
|
export const Profiler = bindNew(_Profiler);
|
|
@@ -475,9 +440,7 @@ class _OTable {
|
|
|
475
440
|
this._id = 41;
|
|
476
441
|
}
|
|
477
442
|
encode(writer) {
|
|
478
|
-
return writer.uint(41) &&
|
|
479
|
-
writer.string(this.key) &&
|
|
480
|
-
writer.string(this.value);
|
|
443
|
+
return writer.uint(41) && writer.string(this.key) && writer.string(this.value);
|
|
481
444
|
}
|
|
482
445
|
}
|
|
483
446
|
export const OTable = bindNew(_OTable);
|
|
@@ -488,8 +451,7 @@ class _StateAction {
|
|
|
488
451
|
this._id = 42;
|
|
489
452
|
}
|
|
490
453
|
encode(writer) {
|
|
491
|
-
return writer.uint(42) &&
|
|
492
|
-
writer.string(this.type);
|
|
454
|
+
return writer.uint(42) && writer.string(this.type);
|
|
493
455
|
}
|
|
494
456
|
}
|
|
495
457
|
export const StateAction = bindNew(_StateAction);
|
|
@@ -502,10 +464,10 @@ class _Redux {
|
|
|
502
464
|
this._id = 44;
|
|
503
465
|
}
|
|
504
466
|
encode(writer) {
|
|
505
|
-
return writer.uint(44) &&
|
|
467
|
+
return (writer.uint(44) &&
|
|
506
468
|
writer.string(this.action) &&
|
|
507
469
|
writer.string(this.state) &&
|
|
508
|
-
writer.uint(this.duration);
|
|
470
|
+
writer.uint(this.duration));
|
|
509
471
|
}
|
|
510
472
|
}
|
|
511
473
|
export const Redux = bindNew(_Redux);
|
|
@@ -517,9 +479,7 @@ class _Vuex {
|
|
|
517
479
|
this._id = 45;
|
|
518
480
|
}
|
|
519
481
|
encode(writer) {
|
|
520
|
-
return writer.uint(45) &&
|
|
521
|
-
writer.string(this.mutation) &&
|
|
522
|
-
writer.string(this.state);
|
|
482
|
+
return writer.uint(45) && writer.string(this.mutation) && writer.string(this.state);
|
|
523
483
|
}
|
|
524
484
|
}
|
|
525
485
|
export const Vuex = bindNew(_Vuex);
|
|
@@ -531,9 +491,7 @@ class _MobX {
|
|
|
531
491
|
this._id = 46;
|
|
532
492
|
}
|
|
533
493
|
encode(writer) {
|
|
534
|
-
return writer.uint(46) &&
|
|
535
|
-
writer.string(this.type) &&
|
|
536
|
-
writer.string(this.payload);
|
|
494
|
+
return writer.uint(46) && writer.string(this.type) && writer.string(this.payload);
|
|
537
495
|
}
|
|
538
496
|
}
|
|
539
497
|
export const MobX = bindNew(_MobX);
|
|
@@ -546,10 +504,10 @@ class _NgRx {
|
|
|
546
504
|
this._id = 47;
|
|
547
505
|
}
|
|
548
506
|
encode(writer) {
|
|
549
|
-
return writer.uint(47) &&
|
|
507
|
+
return (writer.uint(47) &&
|
|
550
508
|
writer.string(this.action) &&
|
|
551
509
|
writer.string(this.state) &&
|
|
552
|
-
writer.uint(this.duration);
|
|
510
|
+
writer.uint(this.duration));
|
|
553
511
|
}
|
|
554
512
|
}
|
|
555
513
|
export const NgRx = bindNew(_NgRx);
|
|
@@ -563,11 +521,11 @@ class _GraphQL {
|
|
|
563
521
|
this._id = 48;
|
|
564
522
|
}
|
|
565
523
|
encode(writer) {
|
|
566
|
-
return writer.uint(48) &&
|
|
524
|
+
return (writer.uint(48) &&
|
|
567
525
|
writer.string(this.operationKind) &&
|
|
568
526
|
writer.string(this.operationName) &&
|
|
569
527
|
writer.string(this.variables) &&
|
|
570
|
-
writer.string(this.response);
|
|
528
|
+
writer.string(this.response));
|
|
571
529
|
}
|
|
572
530
|
}
|
|
573
531
|
export const GraphQL = bindNew(_GraphQL);
|
|
@@ -581,11 +539,11 @@ class _PerformanceTrack {
|
|
|
581
539
|
this._id = 49;
|
|
582
540
|
}
|
|
583
541
|
encode(writer) {
|
|
584
|
-
return writer.uint(49) &&
|
|
542
|
+
return (writer.uint(49) &&
|
|
585
543
|
writer.int(this.frames) &&
|
|
586
544
|
writer.int(this.ticks) &&
|
|
587
545
|
writer.uint(this.totalJSHeapSize) &&
|
|
588
|
-
writer.uint(this.usedJSHeapSize);
|
|
546
|
+
writer.uint(this.usedJSHeapSize));
|
|
589
547
|
}
|
|
590
548
|
}
|
|
591
549
|
export const PerformanceTrack = bindNew(_PerformanceTrack);
|
|
@@ -603,7 +561,7 @@ class _ResourceTiming {
|
|
|
603
561
|
this._id = 53;
|
|
604
562
|
}
|
|
605
563
|
encode(writer) {
|
|
606
|
-
return writer.uint(53) &&
|
|
564
|
+
return (writer.uint(53) &&
|
|
607
565
|
writer.uint(this.timestamp) &&
|
|
608
566
|
writer.uint(this.duration) &&
|
|
609
567
|
writer.uint(this.ttfb) &&
|
|
@@ -611,7 +569,7 @@ class _ResourceTiming {
|
|
|
611
569
|
writer.uint(this.encodedBodySize) &&
|
|
612
570
|
writer.uint(this.decodedBodySize) &&
|
|
613
571
|
writer.string(this.url) &&
|
|
614
|
-
writer.string(this.initiator);
|
|
572
|
+
writer.string(this.initiator));
|
|
615
573
|
}
|
|
616
574
|
}
|
|
617
575
|
export const ResourceTiming = bindNew(_ResourceTiming);
|
|
@@ -623,9 +581,7 @@ class _ConnectionInformation {
|
|
|
623
581
|
this._id = 54;
|
|
624
582
|
}
|
|
625
583
|
encode(writer) {
|
|
626
|
-
return writer.uint(54) &&
|
|
627
|
-
writer.uint(this.downlink) &&
|
|
628
|
-
writer.string(this.type);
|
|
584
|
+
return writer.uint(54) && writer.uint(this.downlink) && writer.string(this.type);
|
|
629
585
|
}
|
|
630
586
|
}
|
|
631
587
|
export const ConnectionInformation = bindNew(_ConnectionInformation);
|
|
@@ -636,8 +592,7 @@ class _SetPageVisibility {
|
|
|
636
592
|
this._id = 55;
|
|
637
593
|
}
|
|
638
594
|
encode(writer) {
|
|
639
|
-
return writer.uint(55) &&
|
|
640
|
-
writer.boolean(this.hidden);
|
|
595
|
+
return writer.uint(55) && writer.boolean(this.hidden);
|
|
641
596
|
}
|
|
642
597
|
}
|
|
643
598
|
export const SetPageVisibility = bindNew(_SetPageVisibility);
|
|
@@ -654,14 +609,14 @@ class _LongTask {
|
|
|
654
609
|
this._id = 59;
|
|
655
610
|
}
|
|
656
611
|
encode(writer) {
|
|
657
|
-
return writer.uint(59) &&
|
|
612
|
+
return (writer.uint(59) &&
|
|
658
613
|
writer.uint(this.timestamp) &&
|
|
659
614
|
writer.uint(this.duration) &&
|
|
660
615
|
writer.uint(this.context) &&
|
|
661
616
|
writer.uint(this.containerType) &&
|
|
662
617
|
writer.string(this.containerSrc) &&
|
|
663
618
|
writer.string(this.containerId) &&
|
|
664
|
-
writer.string(this.containerName);
|
|
619
|
+
writer.string(this.containerName));
|
|
665
620
|
}
|
|
666
621
|
}
|
|
667
622
|
export const LongTask = bindNew(_LongTask);
|
|
@@ -675,11 +630,11 @@ class _SetNodeAttributeURLBased {
|
|
|
675
630
|
this._id = 60;
|
|
676
631
|
}
|
|
677
632
|
encode(writer) {
|
|
678
|
-
return writer.uint(60) &&
|
|
633
|
+
return (writer.uint(60) &&
|
|
679
634
|
writer.uint(this.id) &&
|
|
680
635
|
writer.string(this.name) &&
|
|
681
636
|
writer.string(this.value) &&
|
|
682
|
-
writer.string(this.baseURL);
|
|
637
|
+
writer.string(this.baseURL));
|
|
683
638
|
}
|
|
684
639
|
}
|
|
685
640
|
export const SetNodeAttributeURLBased = bindNew(_SetNodeAttributeURLBased);
|
|
@@ -692,10 +647,10 @@ class _SetCSSDataURLBased {
|
|
|
692
647
|
this._id = 61;
|
|
693
648
|
}
|
|
694
649
|
encode(writer) {
|
|
695
|
-
return writer.uint(61) &&
|
|
650
|
+
return (writer.uint(61) &&
|
|
696
651
|
writer.uint(this.id) &&
|
|
697
652
|
writer.string(this.data) &&
|
|
698
|
-
writer.string(this.baseURL);
|
|
653
|
+
writer.string(this.baseURL));
|
|
699
654
|
}
|
|
700
655
|
}
|
|
701
656
|
export const SetCSSDataURLBased = bindNew(_SetCSSDataURLBased);
|
|
@@ -707,9 +662,7 @@ class _TechnicalInfo {
|
|
|
707
662
|
this._id = 63;
|
|
708
663
|
}
|
|
709
664
|
encode(writer) {
|
|
710
|
-
return writer.uint(63) &&
|
|
711
|
-
writer.string(this.type) &&
|
|
712
|
-
writer.string(this.value);
|
|
665
|
+
return writer.uint(63) && writer.string(this.type) && writer.string(this.value);
|
|
713
666
|
}
|
|
714
667
|
}
|
|
715
668
|
export const TechnicalInfo = bindNew(_TechnicalInfo);
|
|
@@ -721,9 +674,7 @@ class _CustomIssue {
|
|
|
721
674
|
this._id = 64;
|
|
722
675
|
}
|
|
723
676
|
encode(writer) {
|
|
724
|
-
return writer.uint(64) &&
|
|
725
|
-
writer.string(this.name) &&
|
|
726
|
-
writer.string(this.payload);
|
|
677
|
+
return writer.uint(64) && writer.string(this.name) && writer.string(this.payload);
|
|
727
678
|
}
|
|
728
679
|
}
|
|
729
680
|
export const CustomIssue = bindNew(_CustomIssue);
|
|
@@ -747,11 +698,11 @@ class _CSSInsertRuleURLBased {
|
|
|
747
698
|
this._id = 67;
|
|
748
699
|
}
|
|
749
700
|
encode(writer) {
|
|
750
|
-
return writer.uint(67) &&
|
|
701
|
+
return (writer.uint(67) &&
|
|
751
702
|
writer.uint(this.id) &&
|
|
752
703
|
writer.string(this.rule) &&
|
|
753
704
|
writer.uint(this.index) &&
|
|
754
|
-
writer.string(this.baseURL);
|
|
705
|
+
writer.string(this.baseURL));
|
|
755
706
|
}
|
|
756
707
|
}
|
|
757
708
|
export const CSSInsertRuleURLBased = bindNew(_CSSInsertRuleURLBased);
|
|
@@ -765,11 +716,11 @@ class _MouseClick {
|
|
|
765
716
|
this._id = 69;
|
|
766
717
|
}
|
|
767
718
|
encode(writer) {
|
|
768
|
-
return writer.uint(69) &&
|
|
719
|
+
return (writer.uint(69) &&
|
|
769
720
|
writer.uint(this.id) &&
|
|
770
721
|
writer.uint(this.hesitationTime) &&
|
|
771
722
|
writer.string(this.label) &&
|
|
772
|
-
writer.string(this.selector);
|
|
723
|
+
writer.string(this.selector));
|
|
773
724
|
}
|
|
774
725
|
}
|
|
775
726
|
export const MouseClick = bindNew(_MouseClick);
|
|
@@ -781,9 +732,7 @@ class _CreateIFrameDocument {
|
|
|
781
732
|
this._id = 70;
|
|
782
733
|
}
|
|
783
734
|
encode(writer) {
|
|
784
|
-
return writer.uint(70) &&
|
|
785
|
-
writer.uint(this.frameID) &&
|
|
786
|
-
writer.uint(this.id);
|
|
735
|
+
return writer.uint(70) && writer.uint(this.frameID) && writer.uint(this.id);
|
|
787
736
|
}
|
|
788
737
|
}
|
|
789
738
|
export const CreateIFrameDocument = bindNew(_CreateIFrameDocument);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"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.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.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.es2020.bigint.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.esnext.intl.d.ts","../../src/common/types.ts","../../src/common/messages.ts","../../src/common/webworker.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/resolve/index.d.ts"],"fileInfos":[{"version":"ca3c1cd7464b613bf148a1422cb3201fe083e08565a02dc99eaad0d2977c16a7","affectsGlobalScope":true,"impliedFormat":1},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true,"impliedFormat":1},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true,"impliedFormat":1},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true,"impliedFormat":1},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"ca06fa264234f5895ebfe13ec1f578ee1c18a0d02219a54c3cdad296686251cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true,"impliedFormat":1},"8f2ce078b846e85a1e1d9608ee441d1b01babad7059966dafb3fb203c0be58b3","57f6a26ef13806a81f4fd41f0afc9745f8133850172d593bd8a873f8ac8ef8e1","f7bf98d3ccfb7f6ef1048b3e7a947df1494dd7a5ee1013745450814613920c51","89ccbe04e737ce613f5f04990271cfa84901446350b8551b0555ddf19319723b","9122ed7070e054b73ebab37c2373a196def2d90e7d1a9a7fcd9d46b0e51fae78","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true,"impliedFormat":1},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"3e4624c306340ad303cc536a07004e81336c3f088308a9e4a9f4c957a3cda2fd","affectsGlobalScope":true,"impliedFormat":1},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","34ec1daf3566f26c43dbab380af0de1aac29166e57e4f9ef379a2f154e0cb290","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"249a2b90439cdfd51709539fbfa4dfe0791cbae6efce1e9b327ba8f8cd703f49","affectsGlobalScope":true,"impliedFormat":1},"2f60ac046e587e917d739f1edc77540eb0ec34f83090dae4ebd5f96c1c9578d4","a9b6b0f7b1e30359283b131ba6d1c51ee2d3601a2f12e1623141e6a1a60c92a5","aeee0090b38de0dd47ca9a79ad5c2d156e3e09d92306719b0b45a3e96098e564","7bac475dcdd9f7e4e9da934d32c305bc889c4ce3c8ac0ef45a93a8d670fff607","09416dd69576b03a3f485adf329a02f043e4a481e060ef5b208194e488d31fd9","8acf99b1c8682276a63ea5bb68433782715892726b97e4604a415e4e56bce41c",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true,"impliedFormat":1},"3b145a2351f5cf16abf999c8d5f4481c74dffdc54ec1e9a89992e2622e1226c5","a907bf91df26df2400858ef75f749498fb5cf00062bf90a737ac3949cc07978d","d270fd4b565eda11a0a737c181892316b7a1ace06c7988d0246219c3df11db06","4275d5f964e7fc7afc18538e26b3748c207dd772998346d17f409749aa1f3a63",{"version":"59a638a504490fecaacf0020b9814b6abee37edb66047eb1ab9f7c2274bf1da0","affectsGlobalScope":true,"impliedFormat":1},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","d1a78a3c5708807e8de3e399f91df4797c62e44b02195eefc2209b2e713e54ee","8c4c1a64db28930732033c31418f817dcb9d09d706766707ae6d38f23faf0c53","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","556bf5c36deb62cffa1bf697c1789fe008ec82db0273025001db66732714e9d9","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true,"impliedFormat":1},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","653968fc1b35c5eb3d273d36fac1c1dc66f9537edf28f33485b8776bd956e23d",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true,"impliedFormat":1},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","a381f079c4804442f179d742fdb2e495fe28d67a47cac673485f75ae2e77aeca","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"bfe39beb986d2a2e512c091cbe924f1c415bc65de54de0e2f6a0dc6f84c183d9","affectsGlobalScope":true,"impliedFormat":1},"2af17363f8a062e3a8cd1b26030af0058b3f86e783f4fc6aa9f57247f240ebaa","06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","dfe08140492cdc135fb7fd9c4a652c05207b61a436906079b87da1d3111314bf","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","089e1f8603cbc35ab977c8dcc662eb754b82fca32ed1dfb16bd682726c2d5432","8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},"64d5585e08ad1ab194b18bf4e851f22a626eae33ac7312ca4ba90bb7ea7daf64","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede"],"options":{"composite":true,"declaration":true,"module":5,"noImplicitAny":true,"noImplicitThis":true,"outDir":"..","rootDir":"../../src","strictNullChecks":true,"target":2},"fileIdsList":[[87],[58,59,87,94,95],[43,87],[46,87],[47,52,87],[48,58,59,66,75,86,87],[48,49,58,66,87],[50,87],[51,52,59,67,87],[52,75,83,87],[53,55,58,66,87],[54,87],[55,56,87],[57,58,87],[58,87],[58,59,60,75,86,87],[58,59,60,75,78,87],[87,91],[61,66,75,86,87],[58,59,61,62,66,75,83,86,87],[61,63,75,83,86,87],[43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93],[58,64,87],[65,86,87],[55,58,66,75,87],[67,87],[68,87],[46,69,87],[70,85,87,91],[71,87],[72,87],[58,73,87],[73,74,87,89],[58,75,76,77,78,87],[75,77,87],[75,76,87],[78,87],[79,87],[58,81,82,87],[81,82,87],[52,66,75,83,87],[84,87],[66,85,87],[47,61,72,86,87],[52,87],[75,87,88],[87,89],[87,90],[47,52,58,60,69,75,86,87,89,91],[75,87,92],[87,94],[39,87]],"referencedMap":[[42,1],[96,2],[97,1],[95,1],[43,3],[44,3],[46,4],[47,5],[48,6],[49,7],[50,8],[51,9],[52,10],[53,11],[54,12],[55,13],[56,13],[57,14],[58,15],[59,16],[60,17],[45,18],[93,1],[61,19],[62,20],[63,21],[94,22],[64,23],[65,24],[66,25],[67,26],[68,27],[69,28],[70,29],[71,30],[72,31],[73,32],[74,33],[75,34],[77,35],[76,36],[78,37],[79,38],[80,1],[81,39],[82,40],[83,41],[84,42],[85,43],[86,44],[87,45],[88,46],[89,47],[90,48],[91,49],[92,50],[98,51],[9,1],[8,1],[2,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[3,1],[4,1],[21,1],[18,1],[19,1],[20,1],[22,1],[23,1],[24,1],[5,1],[25,1],[26,1],[27,1],[28,1],[6,1],[29,1],[30,1],[31,1],[32,1],[7,1],[37,1],[33,1],[34,1],[35,1],[36,1],[1,1],[38,1],[40,52],[39,1],[41,1]],"exportedModulesMap":[[42,1],[96,2],[97,1],[95,1],[43,3],[44,3],[46,4],[47,5],[48,6],[49,7],[50,8],[51,9],[52,10],[53,11],[54,12],[55,13],[56,13],[57,14],[58,15],[59,16],[60,17],[45,18],[93,1],[61,19],[62,20],[63,21],[94,22],[64,23],[65,24],[66,25],[67,26],[68,27],[69,28],[70,29],[71,30],[72,31],[73,32],[74,33],[75,34],[77,35],[76,36],[78,37],[79,38],[80,1],[81,39],[82,40],[83,41],[84,42],[85,43],[86,44],[87,45],[88,46],[89,47],[90,48],[91,49],[92,50],[98,51],[9,1],[8,1],[2,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[3,1],[4,1],[21,1],[18,1],[19,1],[20,1],[22,1],[23,1],[24,1],[5,1],[25,1],[26,1],[27,1],[28,1],[6,1],[29,1],[30,1],[31,1],[32,1],[7,1],[37,1],[33,1],[34,1],[35,1],[36,1],[1,1],[38,1],[40,52],[39,1],[41,1]],"semanticDiagnosticsPerFile":[42,96,97,95,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,45,93,61,62,63,94,64,65,66,67,68,69,70,71,72,73,74,75,77,76,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,98,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,7,37,33,34,35,36,1,38,40,39,41]},"version":"4.6.0-dev.20211126"}
|
|
1
|
+
{"program":{"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.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.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.es2020.bigint.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.esnext.intl.d.ts","../../src/common/types.ts","../../src/common/messages.ts","../../src/common/webworker.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/resolve/index.d.ts"],"fileInfos":[{"version":"ca3c1cd7464b613bf148a1422cb3201fe083e08565a02dc99eaad0d2977c16a7","affectsGlobalScope":true,"impliedFormat":1},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true,"impliedFormat":1},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true,"impliedFormat":1},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true,"impliedFormat":1},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"ca06fa264234f5895ebfe13ec1f578ee1c18a0d02219a54c3cdad296686251cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true,"impliedFormat":1},"2aeaaa3adfeae9052235f6f7f8118c5c276807d3c1d720b7c9a5987b857df947","85b5a05dd313d7e302b17f2ace389ef570cfc8d00cba087189f014c81cf552a0","814dbbf8b3638a1412184d18b1e4226d38d720a7c25520cf383076793088ac65","89ccbe04e737ce613f5f04990271cfa84901446350b8551b0555ddf19319723b","9122ed7070e054b73ebab37c2373a196def2d90e7d1a9a7fcd9d46b0e51fae78","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true,"impliedFormat":1},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"3e4624c306340ad303cc536a07004e81336c3f088308a9e4a9f4c957a3cda2fd","affectsGlobalScope":true,"impliedFormat":1},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","025fc13211ed47d2798269017af3ec869122a050d5431a6ad3c1997900e65c58","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"249a2b90439cdfd51709539fbfa4dfe0791cbae6efce1e9b327ba8f8cd703f49","affectsGlobalScope":true,"impliedFormat":1},"2f60ac046e587e917d739f1edc77540eb0ec34f83090dae4ebd5f96c1c9578d4","a9b6b0f7b1e30359283b131ba6d1c51ee2d3601a2f12e1623141e6a1a60c92a5","aeee0090b38de0dd47ca9a79ad5c2d156e3e09d92306719b0b45a3e96098e564","7bac475dcdd9f7e4e9da934d32c305bc889c4ce3c8ac0ef45a93a8d670fff607","09416dd69576b03a3f485adf329a02f043e4a481e060ef5b208194e488d31fd9","8acf99b1c8682276a63ea5bb68433782715892726b97e4604a415e4e56bce41c",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true,"impliedFormat":1},"3b145a2351f5cf16abf999c8d5f4481c74dffdc54ec1e9a89992e2622e1226c5","a907bf91df26df2400858ef75f749498fb5cf00062bf90a737ac3949cc07978d","d270fd4b565eda11a0a737c181892316b7a1ace06c7988d0246219c3df11db06","4275d5f964e7fc7afc18538e26b3748c207dd772998346d17f409749aa1f3a63",{"version":"59a638a504490fecaacf0020b9814b6abee37edb66047eb1ab9f7c2274bf1da0","affectsGlobalScope":true,"impliedFormat":1},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","d1a78a3c5708807e8de3e399f91df4797c62e44b02195eefc2209b2e713e54ee","8c4c1a64db28930732033c31418f817dcb9d09d706766707ae6d38f23faf0c53","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","12a70315c8281e46d65696086dd25827408e967b305a22276ae2779fe519e0fe","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true,"impliedFormat":1},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","29d613c3964ea75b2b4e0d17098245c34529282e9cc72b7e4eeb2a7b12c27cb7",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true,"impliedFormat":1},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","a381f079c4804442f179d742fdb2e495fe28d67a47cac673485f75ae2e77aeca","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"bfe39beb986d2a2e512c091cbe924f1c415bc65de54de0e2f6a0dc6f84c183d9","affectsGlobalScope":true,"impliedFormat":1},"2af17363f8a062e3a8cd1b26030af0058b3f86e783f4fc6aa9f57247f240ebaa","06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","dfe08140492cdc135fb7fd9c4a652c05207b61a436906079b87da1d3111314bf","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","089e1f8603cbc35ab977c8dcc662eb754b82fca32ed1dfb16bd682726c2d5432","8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},"82fc37849846a3a0264047621d5beb6ce2ddeb2f83bdee2c79523af3c3282d97","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede"],"options":{"composite":true,"declaration":true,"module":5,"noImplicitAny":true,"noImplicitThis":true,"outDir":"..","rootDir":"../../src","strictNullChecks":true,"target":2},"fileIdsList":[[87],[58,59,87,94,95],[43,87],[46,87],[47,52,87],[48,58,59,66,75,86,87],[48,49,58,66,87],[50,87],[51,52,59,67,87],[52,75,83,87],[53,55,58,66,87],[54,87],[55,56,87],[57,58,87],[58,87],[58,59,60,75,86,87],[58,59,60,75,78,87],[87,91],[61,66,75,86,87],[58,59,61,62,66,75,83,86,87],[61,63,75,83,86,87],[43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93],[58,64,87],[65,86,87],[55,58,66,75,87],[67,87],[68,87],[46,69,87],[70,85,87,91],[71,87],[72,87],[58,73,87],[73,74,87,89],[58,75,76,77,78,87],[75,77,87],[75,76,87],[78,87],[79,87],[58,81,82,87],[81,82,87],[52,66,75,83,87],[84,87],[66,85,87],[47,61,72,86,87],[52,87],[75,87,88],[87,89],[87,90],[47,52,58,60,69,75,86,87,89,91],[75,87,92],[87,94],[39,87]],"referencedMap":[[42,1],[96,2],[97,1],[95,1],[43,3],[44,3],[46,4],[47,5],[48,6],[49,7],[50,8],[51,9],[52,10],[53,11],[54,12],[55,13],[56,13],[57,14],[58,15],[59,16],[60,17],[45,18],[93,1],[61,19],[62,20],[63,21],[94,22],[64,23],[65,24],[66,25],[67,26],[68,27],[69,28],[70,29],[71,30],[72,31],[73,32],[74,33],[75,34],[77,35],[76,36],[78,37],[79,38],[80,1],[81,39],[82,40],[83,41],[84,42],[85,43],[86,44],[87,45],[88,46],[89,47],[90,48],[91,49],[92,50],[98,51],[9,1],[8,1],[2,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[3,1],[4,1],[21,1],[18,1],[19,1],[20,1],[22,1],[23,1],[24,1],[5,1],[25,1],[26,1],[27,1],[28,1],[6,1],[29,1],[30,1],[31,1],[32,1],[7,1],[37,1],[33,1],[34,1],[35,1],[36,1],[1,1],[38,1],[40,52],[39,1],[41,1]],"exportedModulesMap":[[42,1],[96,2],[97,1],[95,1],[43,3],[44,3],[46,4],[47,5],[48,6],[49,7],[50,8],[51,9],[52,10],[53,11],[54,12],[55,13],[56,13],[57,14],[58,15],[59,16],[60,17],[45,18],[93,1],[61,19],[62,20],[63,21],[94,22],[64,23],[65,24],[66,25],[67,26],[68,27],[69,28],[70,29],[71,30],[72,31],[73,32],[74,33],[75,34],[77,35],[76,36],[78,37],[79,38],[80,1],[81,39],[82,40],[83,41],[84,42],[85,43],[86,44],[87,45],[88,46],[89,47],[90,48],[91,49],[92,50],[98,51],[9,1],[8,1],[2,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[3,1],[4,1],[21,1],[18,1],[19,1],[20,1],[22,1],[23,1],[24,1],[5,1],[25,1],[26,1],[27,1],[28,1],[6,1],[29,1],[30,1],[31,1],[32,1],[7,1],[37,1],[33,1],[34,1],[35,1],[36,1],[1,1],[38,1],[40,52],[39,1],[41,1]],"semanticDiagnosticsPerFile":[42,96,97,95,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,45,93,61,62,63,94,64,65,66,67,68,69,70,71,72,73,74,75,77,76,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,98,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,7,37,33,34,35,36,1,38,40,39,41]},"version":"4.6.0-dev.20211126"}
|