@isopodlabs/vscode_utils 0.2.6 → 0.3.0
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/LICENSE.txt +21 -0
- package/README.md +12 -9
- package/assets/shared.css +252 -243
- package/assets/tree.css +24 -24
- package/dist/codicon.d.ts +16 -0
- package/dist/codicon.js +490 -0
- package/dist/debug.d.ts +76 -76
- package/dist/debug.js +18 -18
- package/dist/fs.d.ts +40 -41
- package/dist/fs.js +38 -39
- package/dist/icon-theme.js +10 -10
- package/dist/jsx-runtime.d.ts +19 -26
- package/dist/jsx-runtime.js +28 -526
- package/dist/webview/shared.d.ts +358 -0
- package/dist/webview/shared.js +29 -26
- package/dist/webview/tree.d.ts +2 -0
- package/dist/webview/tree.js +13 -0
- package/package.json +38 -38
- package/dist/webview/tsconfig.tsbuildinfo +0 -1
package/dist/webview/shared.d.ts
CHANGED
|
@@ -3,9 +3,366 @@ export declare const vscode: {
|
|
|
3
3
|
getState: () => any;
|
|
4
4
|
setState: (state: any) => void;
|
|
5
5
|
};
|
|
6
|
+
export declare function fixupElements(root: ParentNode): void;
|
|
6
7
|
export declare function createElement<K extends keyof HTMLElementTagNameMap>(tag: K, options?: Record<string, unknown>): HTMLElementTagNameMap[K];
|
|
7
8
|
export declare function getFirstText(element: Element): string | undefined;
|
|
8
9
|
export declare function debounce(func: (...args: any[]) => void, wait: number): (...args: any[]) => void;
|
|
10
|
+
interface Position<T> {
|
|
11
|
+
x: T;
|
|
12
|
+
y: T;
|
|
13
|
+
}
|
|
14
|
+
interface Size<T> {
|
|
15
|
+
width: T;
|
|
16
|
+
height: T;
|
|
17
|
+
}
|
|
18
|
+
interface Edges<T> {
|
|
19
|
+
left: T;
|
|
20
|
+
right: T;
|
|
21
|
+
top: T;
|
|
22
|
+
bottom: T;
|
|
23
|
+
}
|
|
24
|
+
interface Corners<T> {
|
|
25
|
+
topLeft: T;
|
|
26
|
+
topRight: T;
|
|
27
|
+
bottomLeft: T;
|
|
28
|
+
bottomRight: T;
|
|
29
|
+
}
|
|
30
|
+
interface WidthStyleColor<T> {
|
|
31
|
+
width: T;
|
|
32
|
+
style: T;
|
|
33
|
+
color: T;
|
|
34
|
+
}
|
|
35
|
+
interface Animation {
|
|
36
|
+
composition: string;
|
|
37
|
+
delay: string;
|
|
38
|
+
direction: string;
|
|
39
|
+
duration: string;
|
|
40
|
+
fillMode: string;
|
|
41
|
+
iterationCount: string;
|
|
42
|
+
name: string;
|
|
43
|
+
playState: string;
|
|
44
|
+
timingFunction: string;
|
|
45
|
+
}
|
|
46
|
+
interface Background {
|
|
47
|
+
attachment: string;
|
|
48
|
+
clip: string;
|
|
49
|
+
color: string;
|
|
50
|
+
image: string;
|
|
51
|
+
origin: string;
|
|
52
|
+
position: string;
|
|
53
|
+
repeat: string;
|
|
54
|
+
size: string;
|
|
55
|
+
blendMode: string;
|
|
56
|
+
}
|
|
57
|
+
interface Border extends WidthStyleColor<Edges<string>> {
|
|
58
|
+
radius: Corners<string>;
|
|
59
|
+
collapse: string;
|
|
60
|
+
spacing: string;
|
|
61
|
+
image: {
|
|
62
|
+
outset: string;
|
|
63
|
+
repeat: string;
|
|
64
|
+
slice: string;
|
|
65
|
+
source: string;
|
|
66
|
+
width: string;
|
|
67
|
+
};
|
|
68
|
+
}
|
|
69
|
+
interface Font {
|
|
70
|
+
family: string;
|
|
71
|
+
size: string;
|
|
72
|
+
style: string;
|
|
73
|
+
weight: string;
|
|
74
|
+
lineHeight: string;
|
|
75
|
+
featureSettings: string;
|
|
76
|
+
variationSettings: string;
|
|
77
|
+
kerning: string;
|
|
78
|
+
opticalSizing: string;
|
|
79
|
+
palette: string;
|
|
80
|
+
sizeAdjust: string;
|
|
81
|
+
variant: {
|
|
82
|
+
alternates: string;
|
|
83
|
+
caps: string;
|
|
84
|
+
eastAsian: string;
|
|
85
|
+
ligatures: string;
|
|
86
|
+
numeric: string;
|
|
87
|
+
position: string;
|
|
88
|
+
};
|
|
89
|
+
synthesis: {
|
|
90
|
+
weight: string;
|
|
91
|
+
style: string;
|
|
92
|
+
smallCaps: string;
|
|
93
|
+
};
|
|
94
|
+
}
|
|
95
|
+
interface Grid {
|
|
96
|
+
autoColumns: string;
|
|
97
|
+
autoFlow: string;
|
|
98
|
+
autoRows: string;
|
|
99
|
+
templateAreas: string;
|
|
100
|
+
templateColumns: string;
|
|
101
|
+
templateRows: string;
|
|
102
|
+
rowStart: string;
|
|
103
|
+
rowEnd: string;
|
|
104
|
+
columnStart: string;
|
|
105
|
+
columnEnd: string;
|
|
106
|
+
}
|
|
107
|
+
export interface Style extends Position<string>, Size<string>, Edges<string> {
|
|
108
|
+
color: string;
|
|
109
|
+
accentColor: string;
|
|
110
|
+
align: {
|
|
111
|
+
content: string;
|
|
112
|
+
items: string;
|
|
113
|
+
self: string;
|
|
114
|
+
};
|
|
115
|
+
justify: {
|
|
116
|
+
content: string;
|
|
117
|
+
items: string;
|
|
118
|
+
self: string;
|
|
119
|
+
};
|
|
120
|
+
animation: Animation;
|
|
121
|
+
appearance: string;
|
|
122
|
+
aspectRatio: string;
|
|
123
|
+
backdropFilter: string;
|
|
124
|
+
backfaceVisibility: string;
|
|
125
|
+
background: Background;
|
|
126
|
+
baseline: {
|
|
127
|
+
align: string;
|
|
128
|
+
shift: string;
|
|
129
|
+
source: string;
|
|
130
|
+
};
|
|
131
|
+
border: Border;
|
|
132
|
+
boxDecorationBreak: string;
|
|
133
|
+
boxShadow: string;
|
|
134
|
+
boxSizing: string;
|
|
135
|
+
break: {
|
|
136
|
+
after: string;
|
|
137
|
+
before: string;
|
|
138
|
+
inside: string;
|
|
139
|
+
};
|
|
140
|
+
captionSide: string;
|
|
141
|
+
caretColor: string;
|
|
142
|
+
clear: string;
|
|
143
|
+
colorScheme: string;
|
|
144
|
+
columns: {
|
|
145
|
+
width: string;
|
|
146
|
+
count: string;
|
|
147
|
+
fill: string;
|
|
148
|
+
gap: string;
|
|
149
|
+
span: string;
|
|
150
|
+
rule: {
|
|
151
|
+
color: string;
|
|
152
|
+
style: string;
|
|
153
|
+
width: string;
|
|
154
|
+
};
|
|
155
|
+
};
|
|
156
|
+
contain: string;
|
|
157
|
+
containIntrinsicBlockSize: string;
|
|
158
|
+
containIntrinsicHeight: string;
|
|
159
|
+
containIntrinsicInlineSize: string;
|
|
160
|
+
containIntrinsicWidth: string;
|
|
161
|
+
container: string;
|
|
162
|
+
containerName: string;
|
|
163
|
+
containerType: string;
|
|
164
|
+
content: string;
|
|
165
|
+
contentVisibility: string;
|
|
166
|
+
counter: {
|
|
167
|
+
increment: string;
|
|
168
|
+
reset: string;
|
|
169
|
+
set: string;
|
|
170
|
+
};
|
|
171
|
+
cursor: string;
|
|
172
|
+
direction: string;
|
|
173
|
+
display: string;
|
|
174
|
+
dominantBaseline: string;
|
|
175
|
+
emptyCells: string;
|
|
176
|
+
filter: string;
|
|
177
|
+
flex: {
|
|
178
|
+
grow: string;
|
|
179
|
+
shrink: string;
|
|
180
|
+
basis: string;
|
|
181
|
+
direction: string;
|
|
182
|
+
wrap: string;
|
|
183
|
+
};
|
|
184
|
+
float: string;
|
|
185
|
+
floodColor: string;
|
|
186
|
+
floodOpacity: string;
|
|
187
|
+
font: Font;
|
|
188
|
+
forcedColorAdjust: string;
|
|
189
|
+
gap: string;
|
|
190
|
+
grid: Grid;
|
|
191
|
+
hyphenateCharacter: string;
|
|
192
|
+
hyphens: string;
|
|
193
|
+
imageRendering: string;
|
|
194
|
+
inset: Edges<string>;
|
|
195
|
+
isolation: string;
|
|
196
|
+
letterSpacing: string;
|
|
197
|
+
lightingColor: string;
|
|
198
|
+
lineBreak: string;
|
|
199
|
+
lineHeight: string;
|
|
200
|
+
list: {
|
|
201
|
+
style: string;
|
|
202
|
+
image: string;
|
|
203
|
+
position: string;
|
|
204
|
+
type: string;
|
|
205
|
+
};
|
|
206
|
+
margin: Edges<string>;
|
|
207
|
+
mask: {
|
|
208
|
+
clip: string;
|
|
209
|
+
composite: string;
|
|
210
|
+
image: string;
|
|
211
|
+
mode: string;
|
|
212
|
+
origin: string;
|
|
213
|
+
position: string;
|
|
214
|
+
repeat: string;
|
|
215
|
+
size: string;
|
|
216
|
+
};
|
|
217
|
+
mathDepth: string;
|
|
218
|
+
mathStyle: string;
|
|
219
|
+
maxBlockSize: string;
|
|
220
|
+
max: Size<string>;
|
|
221
|
+
min: Size<string>;
|
|
222
|
+
mixBlendMode: string;
|
|
223
|
+
objectFit: string;
|
|
224
|
+
objectPosition: string;
|
|
225
|
+
offset: {
|
|
226
|
+
anchor: string;
|
|
227
|
+
distance: string;
|
|
228
|
+
path: string;
|
|
229
|
+
position: string;
|
|
230
|
+
rotate: string;
|
|
231
|
+
};
|
|
232
|
+
opacity: string;
|
|
233
|
+
order: string;
|
|
234
|
+
orphans: string;
|
|
235
|
+
outline: WidthStyleColor<string> & {
|
|
236
|
+
offset: string;
|
|
237
|
+
};
|
|
238
|
+
overflow: Position<string> & {
|
|
239
|
+
anchor: string;
|
|
240
|
+
clipMargin: string;
|
|
241
|
+
wrap: string;
|
|
242
|
+
};
|
|
243
|
+
overscrollBehavior: Position<string>;
|
|
244
|
+
padding: Edges<string>;
|
|
245
|
+
page: string;
|
|
246
|
+
paintOrder: string;
|
|
247
|
+
perspective: string;
|
|
248
|
+
perspectiveOrigin: string;
|
|
249
|
+
pointerEvents: string;
|
|
250
|
+
position: string;
|
|
251
|
+
printColorAdjust: string;
|
|
252
|
+
quotes: string;
|
|
253
|
+
resize: string;
|
|
254
|
+
rowGap: string;
|
|
255
|
+
rubyAlign: string;
|
|
256
|
+
rubyPosition: string;
|
|
257
|
+
scroll: {
|
|
258
|
+
behavior: string;
|
|
259
|
+
margin: Edges<string>;
|
|
260
|
+
padding: Edges<string>;
|
|
261
|
+
snapAlign: string;
|
|
262
|
+
snapStop: string;
|
|
263
|
+
snapType: string;
|
|
264
|
+
barColor: string;
|
|
265
|
+
barGutter: string;
|
|
266
|
+
barWidth: string;
|
|
267
|
+
};
|
|
268
|
+
shape: {
|
|
269
|
+
imageThreshold: string;
|
|
270
|
+
margin: string;
|
|
271
|
+
outside: string;
|
|
272
|
+
rendering: string;
|
|
273
|
+
};
|
|
274
|
+
stopColor: string;
|
|
275
|
+
stopOpacity: string;
|
|
276
|
+
stroke: {
|
|
277
|
+
dasharray: string;
|
|
278
|
+
dashoffset: string;
|
|
279
|
+
linecap: string;
|
|
280
|
+
linejoin: string;
|
|
281
|
+
miterlimit: string;
|
|
282
|
+
opacity: string;
|
|
283
|
+
width: string;
|
|
284
|
+
};
|
|
285
|
+
tabSize: string;
|
|
286
|
+
tableLayout: string;
|
|
287
|
+
text: {
|
|
288
|
+
align: string;
|
|
289
|
+
alignLast: string;
|
|
290
|
+
anchor: string;
|
|
291
|
+
box: string;
|
|
292
|
+
boxEdge: string;
|
|
293
|
+
boxTrim: string;
|
|
294
|
+
combineUpright: string;
|
|
295
|
+
decoration: string;
|
|
296
|
+
decorationColor: string;
|
|
297
|
+
decorationLine: string;
|
|
298
|
+
decorationSkipInk: string;
|
|
299
|
+
decorationStyle: string;
|
|
300
|
+
decorationThickness: string;
|
|
301
|
+
emphasis: string;
|
|
302
|
+
emphasisColor: string;
|
|
303
|
+
emphasisPosition: string;
|
|
304
|
+
emphasisStyle: string;
|
|
305
|
+
indent: string;
|
|
306
|
+
orientation: string;
|
|
307
|
+
overflow: string;
|
|
308
|
+
rendering: string;
|
|
309
|
+
shadow: string;
|
|
310
|
+
transform: string;
|
|
311
|
+
underlineOffset: string;
|
|
312
|
+
underlinePosition: string;
|
|
313
|
+
wrap: string;
|
|
314
|
+
wrapMode: string;
|
|
315
|
+
wrapStyle: string;
|
|
316
|
+
};
|
|
317
|
+
touchAction: string;
|
|
318
|
+
transform: string;
|
|
319
|
+
transformBox: string;
|
|
320
|
+
transformOrigin: string;
|
|
321
|
+
transformStyle: string;
|
|
322
|
+
transition: {
|
|
323
|
+
behavior: string;
|
|
324
|
+
delay: string;
|
|
325
|
+
duration: string;
|
|
326
|
+
property: string;
|
|
327
|
+
timingFunction: string;
|
|
328
|
+
};
|
|
329
|
+
unicodeBidi: string;
|
|
330
|
+
userSelect: string;
|
|
331
|
+
verticalAlign: string;
|
|
332
|
+
viewTransitionClass: string;
|
|
333
|
+
viewTransitionName: string;
|
|
334
|
+
visibility: string;
|
|
335
|
+
whiteSpace: string;
|
|
336
|
+
whiteSpaceCollapse: string;
|
|
337
|
+
widows: string;
|
|
338
|
+
willChange: string;
|
|
339
|
+
wordBreak: string;
|
|
340
|
+
wordSpacing: string;
|
|
341
|
+
writingMode: string;
|
|
342
|
+
zIndex: string;
|
|
343
|
+
zoom: string;
|
|
344
|
+
svgOverride: {
|
|
345
|
+
cx: string;
|
|
346
|
+
cy: string;
|
|
347
|
+
rx: string;
|
|
348
|
+
ry: string;
|
|
349
|
+
r: string;
|
|
350
|
+
fill: string;
|
|
351
|
+
fillOpacity: string;
|
|
352
|
+
fillRule: string;
|
|
353
|
+
colorInterpolation: string;
|
|
354
|
+
colorInterpolationFilters: string;
|
|
355
|
+
d: string;
|
|
356
|
+
maskType: string;
|
|
357
|
+
clipPath: string;
|
|
358
|
+
clipRule: string;
|
|
359
|
+
marker: string;
|
|
360
|
+
markerEnd: string;
|
|
361
|
+
markerMid: string;
|
|
362
|
+
markerStart: string;
|
|
363
|
+
vectorEffect: string;
|
|
364
|
+
};
|
|
365
|
+
}
|
|
9
366
|
export declare function getPadding(style: CSSStyleDeclaration): {
|
|
10
367
|
left: number;
|
|
11
368
|
right: number;
|
|
@@ -80,3 +437,4 @@ export declare class Tooltip {
|
|
|
80
437
|
}
|
|
81
438
|
export declare function template(template: HTMLElement, parent: HTMLElement, values: Record<string, string>[]): void;
|
|
82
439
|
export declare function generateSelector(e: Node | null): string;
|
|
440
|
+
export {};
|
package/dist/webview/shared.js
CHANGED
|
@@ -1,34 +1,37 @@
|
|
|
1
1
|
/// <reference lib="dom" />
|
|
2
2
|
/// <reference lib="dom.iterable" />
|
|
3
|
-
console.log("Hello from shared.ts!");
|
|
4
3
|
export const vscode = acquireVsCodeApi();
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
});
|
|
19
|
-
document.querySelectorAll('.select').forEach(item => {
|
|
20
|
-
item.addEventListener('click', event => {
|
|
21
|
-
if (event.target === item) {
|
|
22
|
-
vscode.postMessage({
|
|
23
|
-
command: 'select',
|
|
24
|
-
selector: generateSelector(item),
|
|
25
|
-
text: item.textContent,
|
|
26
|
-
...item.dataset
|
|
27
|
-
});
|
|
28
|
-
event.stopPropagation();
|
|
4
|
+
export function fixupElements(root) {
|
|
5
|
+
//fix up icons in attributes
|
|
6
|
+
root.querySelectorAll('[icon]').forEach(element => {
|
|
7
|
+
const value = element.getAttribute('icon');
|
|
8
|
+
if (value && value.includes('/')) {
|
|
9
|
+
element.removeAttribute('icon');
|
|
10
|
+
element.classList.add('icon');
|
|
11
|
+
element.style.setProperty('--icon', `url(${value})`);
|
|
12
|
+
}
|
|
13
|
+
const col = element.getAttribute('color');
|
|
14
|
+
if (col) {
|
|
15
|
+
element.removeAttribute('color');
|
|
16
|
+
element.style.setProperty('--icon-color', col);
|
|
29
17
|
}
|
|
30
18
|
});
|
|
31
|
-
|
|
19
|
+
//class 'select'
|
|
20
|
+
root.querySelectorAll('.select').forEach(item => {
|
|
21
|
+
item.addEventListener('click', event => {
|
|
22
|
+
if (event.target === item) {
|
|
23
|
+
vscode.postMessage({
|
|
24
|
+
command: 'select',
|
|
25
|
+
selector: generateSelector(item),
|
|
26
|
+
text: item.textContent,
|
|
27
|
+
...item.dataset
|
|
28
|
+
});
|
|
29
|
+
event.stopPropagation();
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
fixupElements(document);
|
|
32
35
|
export function createElement(tag, options) {
|
|
33
36
|
const e = document.createElement(tag);
|
|
34
37
|
if (options) {
|
package/dist/webview/tree.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export declare class Tree {
|
|
2
2
|
root: HTMLElement;
|
|
3
|
+
notify: (caret: Element, down: boolean) => void;
|
|
3
4
|
constructor(root: HTMLElement, notify: (caret: Element, down: boolean) => void);
|
|
5
|
+
fixup(element: Element): void;
|
|
4
6
|
open(element: Element): void;
|
|
5
7
|
close(element: Element): void;
|
|
6
8
|
close_all(): void;
|
package/dist/webview/tree.js
CHANGED
|
@@ -3,8 +3,10 @@
|
|
|
3
3
|
import { generateSelector } from './shared.js';
|
|
4
4
|
export class Tree {
|
|
5
5
|
root;
|
|
6
|
+
notify;
|
|
6
7
|
constructor(root, notify) {
|
|
7
8
|
this.root = root;
|
|
9
|
+
this.notify = notify;
|
|
8
10
|
this.root = root;
|
|
9
11
|
root.querySelectorAll('.caret').forEach(caret => {
|
|
10
12
|
caret.addEventListener('click', event => {
|
|
@@ -16,6 +18,17 @@ export class Tree {
|
|
|
16
18
|
});
|
|
17
19
|
});
|
|
18
20
|
}
|
|
21
|
+
fixup(element) {
|
|
22
|
+
element.querySelectorAll('.caret').forEach(caret => {
|
|
23
|
+
caret.addEventListener('click', event => {
|
|
24
|
+
if (event.target === caret) {
|
|
25
|
+
caret.classList.toggle('caret-down');
|
|
26
|
+
this.notify(caret, caret.classList.contains('caret-down'));
|
|
27
|
+
event.stopPropagation();
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
});
|
|
31
|
+
}
|
|
19
32
|
open(element) {
|
|
20
33
|
element?.classList.add('caret-down');
|
|
21
34
|
}
|
package/package.json
CHANGED
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@isopodlabs/vscode_utils",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "vscode utilities",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/adrianstephens/vscode-utils.git"
|
|
8
|
+
},
|
|
9
|
+
"exports": {
|
|
10
|
+
"./fs": "./dist/fs.js",
|
|
11
|
+
"./debug": "./dist/debug.js",
|
|
12
|
+
"./icon-theme": "./dist/icon-theme.js",
|
|
13
|
+
"./jsx-runtime": "./dist/jsx-runtime.js",
|
|
14
|
+
"./codicon": "./dist/codicon.js"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist/**/*.{js,d.ts}",
|
|
18
|
+
"assets",
|
|
19
|
+
"README.md"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "tsc -b",
|
|
23
|
+
"lint": "eslint \"src/**/*.ts\""
|
|
24
|
+
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"vscode",
|
|
27
|
+
"typescript"
|
|
28
|
+
],
|
|
29
|
+
"author": "Adrian Stephens",
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@types/node": "^22.13.8",
|
|
33
|
+
"@types/vscode": "^1.73.0",
|
|
34
|
+
"@vscode/debugprotocol": "^1.68.0",
|
|
35
|
+
"eslint": "^9.21.0",
|
|
36
|
+
"typescript-eslint": "^8.26.0"
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -1 +0,0 @@
|
|
|
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.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.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.arraybuffer.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.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/typescript/lib/lib.es2022.full.d.ts","../../src/webview/shared.ts","../../src/webview/table.ts","../../src/webview/tree.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/@types/node/compatibility/index.d.ts","../../node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/undici-types/header.d.ts","../../node_modules/undici-types/readable.d.ts","../../node_modules/undici-types/file.d.ts","../../node_modules/undici-types/fetch.d.ts","../../node_modules/undici-types/formdata.d.ts","../../node_modules/undici-types/connector.d.ts","../../node_modules/undici-types/client.d.ts","../../node_modules/undici-types/errors.d.ts","../../node_modules/undici-types/dispatcher.d.ts","../../node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/undici-types/global-origin.d.ts","../../node_modules/undici-types/pool-stats.d.ts","../../node_modules/undici-types/pool.d.ts","../../node_modules/undici-types/handlers.d.ts","../../node_modules/undici-types/balanced-pool.d.ts","../../node_modules/undici-types/agent.d.ts","../../node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/undici-types/mock-agent.d.ts","../../node_modules/undici-types/mock-client.d.ts","../../node_modules/undici-types/mock-pool.d.ts","../../node_modules/undici-types/mock-errors.d.ts","../../node_modules/undici-types/proxy-agent.d.ts","../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/undici-types/retry-handler.d.ts","../../node_modules/undici-types/retry-agent.d.ts","../../node_modules/undici-types/api.d.ts","../../node_modules/undici-types/interceptors.d.ts","../../node_modules/undici-types/util.d.ts","../../node_modules/undici-types/cookies.d.ts","../../node_modules/undici-types/patch.d.ts","../../node_modules/undici-types/websocket.d.ts","../../node_modules/undici-types/eventsource.d.ts","../../node_modules/undici-types/filereader.d.ts","../../node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/undici-types/content-type.d.ts","../../node_modules/undici-types/cache.d.ts","../../node_modules/undici-types/index.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.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/dom-events.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/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/sea.d.ts","../../node_modules/@types/node/sqlite.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/index.d.ts","../../node_modules/@types/vscode/index.d.ts"],"fileIdsList":[[74,116],[74,113,116],[74,115,116],[116],[74,116,121,151],[74,116,117,122,128,129,136,148,159],[74,116,117,118,128,136],[69,70,71,74,116],[74,116,119,160],[74,116,120,121,129,137],[74,116,121,148,156],[74,116,122,124,128,136],[74,115,116,123],[74,116,124,125],[74,116,128],[74,116,126,128],[74,115,116,128],[74,116,128,129,130,148,159],[74,116,128,129,130,143,148,151],[74,111,116,164],[74,111,116,124,128,131,136,148,159],[74,116,128,129,131,132,136,148,156,159],[74,116,131,133,148,156,159],[72,73,74,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165],[74,116,128,134],[74,116,135,159],[74,116,124,128,136,148],[74,116,137],[74,116,138],[74,115,116,139],[74,113,114,115,116,117,118,119,120,121,122,123,124,125,126,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165],[74,116,141],[74,116,142],[74,116,128,143,144],[74,116,143,145,160,162],[74,116,128,148,149,151],[74,116,148,150],[74,116,148,149],[74,116,151],[74,116,152],[74,113,116,148],[74,116,128,154,155],[74,116,154,155],[74,116,121,136,148,156],[74,116,157],[74,116,136,158],[74,116,131,142,159],[74,116,121,160],[74,116,148,161],[74,116,135,162],[74,116,163],[74,116,121,128,130,139,148,159,162,164],[74,116,148,165],[74,83,87,116,159],[74,83,116,148,159],[74,78,116],[74,80,83,116,156,159],[74,116,136,156],[74,116,166],[74,78,116,166],[74,80,83,116,136,159],[74,75,76,79,82,116,128,148,159],[74,83,90,116],[74,75,81,116],[74,83,104,105,116],[74,79,83,116,151,159,166],[74,104,116,166],[74,77,78,116,166],[74,83,116],[74,77,78,79,80,81,82,83,84,85,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,105,106,107,108,109,110,116],[74,83,98,116],[74,83,90,91,116],[74,81,83,91,92,116],[74,82,116],[74,75,78,83,116],[74,83,87,91,92,116],[74,87,116],[74,81,83,86,116,159],[74,75,80,83,90,116],[74,116,148],[74,78,83,104,116,164,166],[64,74,116]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","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":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","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":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41","impliedFormat":1},{"version":"f463b1fd163e8a72199273b74bca5a26ea72112065e58f15e0fd18901be9f075","signature":"175a6305f95c09a5b6542e7197fe1b626e68d623818f3345c408bd236e9a0678"},{"version":"96218289789606c2820d6ff7f9c32f794ec69d45b0239d7412008282f905059c","signature":"450ad6750c76609121b15611a273232b4eaf7fa999f6734eef6afcc00beb9ca4"},{"version":"3ed3b9e29d737dd30d976216f31b3c2d70145c8a02d4999d3662186c6c62da45","signature":"48582cf7d7ecdf33c2b2e4b4706e058d67fd1d383877a397c2e2e994f88ed0a0"},{"version":"785b9d575b49124ce01b46f5b9402157c7611e6532effa562ac6aebec0074dfc","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"030e350db2525514580ed054f712ffb22d273e6bc7eddc1bb7eda1e0ba5d395e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"8fa51737611c21ba3a5ac02c4e1535741d58bec67c9bdf94b1837a31c97a2263","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"d2bc987ae352271d0d615a420dcf98cc886aa16b87fb2b569358c1fe0ca0773d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4f0539c58717cbc8b73acb29f9e992ab5ff20adba5f9b57130691c7f9b186a4d","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"76103716ba397bbb61f9fa9c9090dca59f39f9047cb1352b2179c5d8e7f4e8d0","impliedFormat":1},{"version":"f9677e434b7a3b14f0a9367f9dfa1227dfe3ee661792d0085523c3191ae6a1a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"115971d64632ea4742b5b115fb64ed04bcaae2c3c342f13d9ba7e3f9ee39c4e7","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"86956cc2eb9dd371d6fab493d326a574afedebf76eef3fa7833b8e0d9b52d6f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","impliedFormat":1},{"version":"e6f5a38687bebe43a4cef426b69d34373ef68be9a6b1538ec0a371e69f309354","impliedFormat":1},{"version":"a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","impliedFormat":1},{"version":"e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"88bc59b32d0d5b4e5d9632ac38edea23454057e643684c3c0b94511296f2998c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ff5a53a58e756d2661b73ba60ffe274231a4432d21f7a2d0d9e4f6aa99f4283","impliedFormat":1},{"version":"1e289f30a48126935a5d408a91129a13a59c9b0f8c007a816f9f16ef821e144e","impliedFormat":1},{"version":"2ea254f944dfe131df1264d1fb96e4b1f7d110195b21f1f5dbb68fdd394e5518","impliedFormat":1},{"version":"5135bdd72cc05a8192bd2e92f0914d7fc43ee077d1293dc622a049b7035a0afb","impliedFormat":1},{"version":"4f80de3a11c0d2f1329a72e92c7416b2f7eab14f67e92cac63bb4e8d01c6edc8","impliedFormat":1},{"version":"6d386bc0d7f3afa1d401afc3e00ed6b09205a354a9795196caed937494a713e6","impliedFormat":1},{"version":"b11cb909327c874a4e81bfb390bf0d231e5bf9439052689ab80ba8afa50da17b","affectsGlobalScope":true,"impliedFormat":1},{"version":"23459c1915878a7c1e86e8bdb9c187cddd3aea105b8b1dfce512f093c969bc7e","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"1dc73f8854e5c4506131c4d95b3a6c24d0c80336d3758e95110f4c7b5cb16397","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f6f1d54779d0b9ed152b0516b0958cd34889764c1190434bbf18e7a8bb884cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"c6b4e0a02545304935ecbf7de7a8e056a31bb50939b5b321c9d50a405b5a0bba","impliedFormat":1},{"version":"fab29e6d649aa074a6b91e3bdf2bff484934a46067f6ee97a30fcd9762ae2213","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"f7b1df115dbd1b8522cba4f404a9f4fdcd5169e2137129187ffeee9d287e4fd1","impliedFormat":1},{"version":"c878f74b6d10b267f6075c51ac1d8becd15b4aa6a58f79c0cfe3b24908357f60","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"fbf68fc8057932b1c30107ebc37420f8d8dc4bef1253c4c2f9e141886c0df5ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"993985beef40c7d113f6dd8f0ba26eed63028b691fbfeb6a5b63f26408dd2c6d","affectsGlobalScope":true,"impliedFormat":1},{"version":"bef91efa0baea5d0e0f0f27b574a8bc100ce62a6d7e70220a0d58af6acab5e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"282fd2a1268a25345b830497b4b7bf5037a5e04f6a9c44c840cb605e19fea841","impliedFormat":1},{"version":"5360a27d3ebca11b224d7d3e38e3e2c63f8290cb1fcf6c3610401898f8e68bc3","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb094bb347d7df3380299eb69836c2c8758626ecf45917577707c03cf816b6f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"f689c4237b70ae6be5f0e4180e8833f34ace40529d1acc0676ab8fb8f70457d7","impliedFormat":1},{"version":"b02784111b3fc9c38590cd4339ff8718f9329a6f4d3fd66e9744a1dcd1d7e191","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"52a8e7e8a1454b6d1b5ad428efae3870ffc56f2c02d923467f2940c454aa9aec","affectsGlobalScope":true,"impliedFormat":1},{"version":"78dc0513cc4f1642906b74dda42146bcbd9df7401717d6e89ea6d72d12ecb539","impliedFormat":1},{"version":"ad90122e1cb599b3bc06a11710eb5489101be678f2920f2322b0ac3e195af78d","impliedFormat":1},{"version":"7b3098756b32d6029cd9889b087a32e890298bd7953d05b72b02f6a3ad4f318a","affectsGlobalScope":true,"impliedFormat":1}],"root":[[64,66]],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"jsx":4,"module":99,"outDir":"..","rootDir":"../../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9},"referencedMap":[[67,1],[68,1],[113,2],[114,2],[115,3],[74,4],[116,5],[117,6],[118,7],[69,1],[72,8],[70,1],[71,1],[119,9],[120,10],[121,11],[122,12],[123,13],[124,14],[125,14],[127,15],[126,16],[128,17],[129,18],[130,19],[112,20],[73,1],[131,21],[132,22],[133,23],[166,24],[134,25],[135,26],[136,27],[137,28],[138,29],[139,30],[140,31],[141,32],[142,33],[143,34],[144,34],[145,35],[146,1],[147,1],[148,36],[150,37],[149,38],[151,39],[152,40],[153,41],[154,42],[155,43],[156,44],[157,45],[158,46],[159,47],[160,48],[161,49],[162,50],[163,51],[164,52],[165,53],[167,1],[61,1],[62,1],[12,1],[10,1],[11,1],[16,1],[15,1],[2,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[24,1],[3,1],[25,1],[26,1],[4,1],[27,1],[31,1],[28,1],[29,1],[30,1],[32,1],[33,1],[34,1],[5,1],[35,1],[36,1],[37,1],[38,1],[6,1],[42,1],[39,1],[40,1],[41,1],[43,1],[7,1],[44,1],[49,1],[50,1],[45,1],[46,1],[47,1],[48,1],[8,1],[54,1],[51,1],[52,1],[53,1],[55,1],[9,1],[56,1],[63,1],[57,1],[58,1],[60,1],[59,1],[1,1],[14,1],[13,1],[90,54],[100,55],[89,54],[110,56],[81,57],[80,58],[109,59],[103,60],[108,61],[83,62],[97,63],[82,64],[106,65],[78,66],[77,59],[107,67],[79,68],[84,69],[85,1],[88,69],[75,1],[111,70],[101,71],[92,72],[93,73],[95,74],[91,75],[94,76],[104,59],[86,77],[87,78],[96,79],[76,80],[99,71],[98,69],[102,1],[105,81],[64,1],[65,1],[66,82]],"latestChangedDtsFile":"./tree.d.ts","version":"5.8.2"}
|