@serwist/core 9.0.0-preview.6 → 9.0.0-preview.8
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/dist/types.d.ts +12 -11
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/types.ts +12 -11
- package/dist/tsconfig.tsbuildinfo +0 -1
package/dist/types.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export type PromiseOrNot<T> = T | Promise<T>;
|
|
1
2
|
export interface MapLikeObject {
|
|
2
3
|
[key: string]: any;
|
|
3
4
|
}
|
|
@@ -131,7 +132,7 @@ export interface CacheDidUpdateCallbackParam {
|
|
|
131
132
|
state?: PluginState;
|
|
132
133
|
}
|
|
133
134
|
export interface CacheDidUpdateCallback {
|
|
134
|
-
(param: CacheDidUpdateCallbackParam):
|
|
135
|
+
(param: CacheDidUpdateCallbackParam): PromiseOrNot<any>;
|
|
135
136
|
}
|
|
136
137
|
export interface CacheKeyWillBeUsedCallbackParam {
|
|
137
138
|
mode: string;
|
|
@@ -141,7 +142,7 @@ export interface CacheKeyWillBeUsedCallbackParam {
|
|
|
141
142
|
state?: PluginState;
|
|
142
143
|
}
|
|
143
144
|
export interface CacheKeyWillBeUsedCallback {
|
|
144
|
-
(param: CacheKeyWillBeUsedCallbackParam):
|
|
145
|
+
(param: CacheKeyWillBeUsedCallbackParam): PromiseOrNot<Request | string>;
|
|
145
146
|
}
|
|
146
147
|
export interface CacheWillUpdateCallbackParam {
|
|
147
148
|
request: Request;
|
|
@@ -150,7 +151,7 @@ export interface CacheWillUpdateCallbackParam {
|
|
|
150
151
|
state?: PluginState;
|
|
151
152
|
}
|
|
152
153
|
export interface CacheWillUpdateCallback {
|
|
153
|
-
(param: CacheWillUpdateCallbackParam):
|
|
154
|
+
(param: CacheWillUpdateCallbackParam): PromiseOrNot<any>;
|
|
154
155
|
}
|
|
155
156
|
export interface CachedResponseWillBeUsedCallbackParam {
|
|
156
157
|
/**
|
|
@@ -172,7 +173,7 @@ export interface CachedResponseWillBeUsedCallbackParam {
|
|
|
172
173
|
state?: PluginState;
|
|
173
174
|
}
|
|
174
175
|
export interface CachedResponseWillBeUsedCallback {
|
|
175
|
-
(param: CachedResponseWillBeUsedCallbackParam):
|
|
176
|
+
(param: CachedResponseWillBeUsedCallbackParam): PromiseOrNot<any>;
|
|
176
177
|
}
|
|
177
178
|
export interface FetchDidFailCallbackParam {
|
|
178
179
|
error: Error;
|
|
@@ -182,7 +183,7 @@ export interface FetchDidFailCallbackParam {
|
|
|
182
183
|
state?: PluginState;
|
|
183
184
|
}
|
|
184
185
|
export interface FetchDidFailCallback {
|
|
185
|
-
(param: FetchDidFailCallbackParam):
|
|
186
|
+
(param: FetchDidFailCallbackParam): PromiseOrNot<any>;
|
|
186
187
|
}
|
|
187
188
|
export interface FetchDidSucceedCallbackParam {
|
|
188
189
|
request: Request;
|
|
@@ -191,7 +192,7 @@ export interface FetchDidSucceedCallbackParam {
|
|
|
191
192
|
state?: PluginState;
|
|
192
193
|
}
|
|
193
194
|
export interface FetchDidSucceedCallback {
|
|
194
|
-
(param: FetchDidSucceedCallbackParam):
|
|
195
|
+
(param: FetchDidSucceedCallbackParam): PromiseOrNot<Response>;
|
|
195
196
|
}
|
|
196
197
|
export interface RequestWillFetchCallbackParam {
|
|
197
198
|
request: Request;
|
|
@@ -199,7 +200,7 @@ export interface RequestWillFetchCallbackParam {
|
|
|
199
200
|
state?: PluginState;
|
|
200
201
|
}
|
|
201
202
|
export interface RequestWillFetchCallback {
|
|
202
|
-
(param: RequestWillFetchCallbackParam):
|
|
203
|
+
(param: RequestWillFetchCallbackParam): PromiseOrNot<Request>;
|
|
203
204
|
}
|
|
204
205
|
export interface HandlerWillRespondCallbackParam {
|
|
205
206
|
request: Request;
|
|
@@ -208,7 +209,7 @@ export interface HandlerWillRespondCallbackParam {
|
|
|
208
209
|
state?: PluginState;
|
|
209
210
|
}
|
|
210
211
|
export interface HandlerWillRespondCallback {
|
|
211
|
-
(param: HandlerWillRespondCallbackParam):
|
|
212
|
+
(param: HandlerWillRespondCallbackParam): PromiseOrNot<Response>;
|
|
212
213
|
}
|
|
213
214
|
export interface HandlerDidErrorCallbackParam {
|
|
214
215
|
request: Request;
|
|
@@ -217,7 +218,7 @@ export interface HandlerDidErrorCallbackParam {
|
|
|
217
218
|
state?: PluginState;
|
|
218
219
|
}
|
|
219
220
|
export interface HandlerDidErrorCallback {
|
|
220
|
-
(param: HandlerDidErrorCallbackParam):
|
|
221
|
+
(param: HandlerDidErrorCallbackParam): PromiseOrNot<Response | undefined>;
|
|
221
222
|
}
|
|
222
223
|
export interface HandlerDidRespondCallbackParam {
|
|
223
224
|
request: Request;
|
|
@@ -226,7 +227,7 @@ export interface HandlerDidRespondCallbackParam {
|
|
|
226
227
|
state?: PluginState;
|
|
227
228
|
}
|
|
228
229
|
export interface HandlerDidRespondCallback {
|
|
229
|
-
(param: HandlerDidRespondCallbackParam):
|
|
230
|
+
(param: HandlerDidRespondCallbackParam): PromiseOrNot<any>;
|
|
230
231
|
}
|
|
231
232
|
export interface HandlerDidCompleteCallbackParam {
|
|
232
233
|
request: Request;
|
|
@@ -236,7 +237,7 @@ export interface HandlerDidCompleteCallbackParam {
|
|
|
236
237
|
state?: PluginState;
|
|
237
238
|
}
|
|
238
239
|
export interface HandlerDidCompleteCallback {
|
|
239
|
-
(param: HandlerDidCompleteCallbackParam):
|
|
240
|
+
(param: HandlerDidCompleteCallbackParam): PromiseOrNot<any>;
|
|
240
241
|
}
|
|
241
242
|
/**
|
|
242
243
|
* An object with optional lifecycle callback properties for the fetch and
|
package/dist/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serwist/core",
|
|
3
|
-
"version": "9.0.0-preview.
|
|
3
|
+
"version": "9.0.0-preview.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "This module is used by a number of the other Serwist modules to share common code.",
|
|
6
6
|
"files": [
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"rollup": "4.9.6",
|
|
42
42
|
"typescript": "5.4.0-dev.20240206",
|
|
43
|
-
"@serwist/constants": "9.0.0-preview.
|
|
43
|
+
"@serwist/constants": "9.0.0-preview.8"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"typescript": ">=5.0.0"
|
package/src/types.ts
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
license that can be found in the LICENSE file or at
|
|
6
6
|
https://opensource.org/licenses/MIT.
|
|
7
7
|
*/
|
|
8
|
+
export type PromiseOrNot<T> = T | Promise<T>;
|
|
8
9
|
|
|
9
10
|
export interface MapLikeObject {
|
|
10
11
|
[key: string]: any;
|
|
@@ -152,7 +153,7 @@ export interface CacheDidUpdateCallbackParam {
|
|
|
152
153
|
}
|
|
153
154
|
|
|
154
155
|
export interface CacheDidUpdateCallback {
|
|
155
|
-
(param: CacheDidUpdateCallbackParam):
|
|
156
|
+
(param: CacheDidUpdateCallbackParam): PromiseOrNot<any>;
|
|
156
157
|
}
|
|
157
158
|
|
|
158
159
|
export interface CacheKeyWillBeUsedCallbackParam {
|
|
@@ -164,7 +165,7 @@ export interface CacheKeyWillBeUsedCallbackParam {
|
|
|
164
165
|
}
|
|
165
166
|
|
|
166
167
|
export interface CacheKeyWillBeUsedCallback {
|
|
167
|
-
(param: CacheKeyWillBeUsedCallbackParam):
|
|
168
|
+
(param: CacheKeyWillBeUsedCallbackParam): PromiseOrNot<Request | string>;
|
|
168
169
|
}
|
|
169
170
|
|
|
170
171
|
export interface CacheWillUpdateCallbackParam {
|
|
@@ -175,7 +176,7 @@ export interface CacheWillUpdateCallbackParam {
|
|
|
175
176
|
}
|
|
176
177
|
|
|
177
178
|
export interface CacheWillUpdateCallback {
|
|
178
|
-
(param: CacheWillUpdateCallbackParam):
|
|
179
|
+
(param: CacheWillUpdateCallbackParam): PromiseOrNot<any>;
|
|
179
180
|
}
|
|
180
181
|
|
|
181
182
|
export interface CachedResponseWillBeUsedCallbackParam {
|
|
@@ -199,7 +200,7 @@ export interface CachedResponseWillBeUsedCallbackParam {
|
|
|
199
200
|
}
|
|
200
201
|
|
|
201
202
|
export interface CachedResponseWillBeUsedCallback {
|
|
202
|
-
(param: CachedResponseWillBeUsedCallbackParam):
|
|
203
|
+
(param: CachedResponseWillBeUsedCallbackParam): PromiseOrNot<any>;
|
|
203
204
|
}
|
|
204
205
|
|
|
205
206
|
export interface FetchDidFailCallbackParam {
|
|
@@ -211,7 +212,7 @@ export interface FetchDidFailCallbackParam {
|
|
|
211
212
|
}
|
|
212
213
|
|
|
213
214
|
export interface FetchDidFailCallback {
|
|
214
|
-
(param: FetchDidFailCallbackParam):
|
|
215
|
+
(param: FetchDidFailCallbackParam): PromiseOrNot<any>;
|
|
215
216
|
}
|
|
216
217
|
|
|
217
218
|
export interface FetchDidSucceedCallbackParam {
|
|
@@ -222,7 +223,7 @@ export interface FetchDidSucceedCallbackParam {
|
|
|
222
223
|
}
|
|
223
224
|
|
|
224
225
|
export interface FetchDidSucceedCallback {
|
|
225
|
-
(param: FetchDidSucceedCallbackParam):
|
|
226
|
+
(param: FetchDidSucceedCallbackParam): PromiseOrNot<Response>;
|
|
226
227
|
}
|
|
227
228
|
|
|
228
229
|
export interface RequestWillFetchCallbackParam {
|
|
@@ -232,7 +233,7 @@ export interface RequestWillFetchCallbackParam {
|
|
|
232
233
|
}
|
|
233
234
|
|
|
234
235
|
export interface RequestWillFetchCallback {
|
|
235
|
-
(param: RequestWillFetchCallbackParam):
|
|
236
|
+
(param: RequestWillFetchCallbackParam): PromiseOrNot<Request>;
|
|
236
237
|
}
|
|
237
238
|
|
|
238
239
|
export interface HandlerWillRespondCallbackParam {
|
|
@@ -243,7 +244,7 @@ export interface HandlerWillRespondCallbackParam {
|
|
|
243
244
|
}
|
|
244
245
|
|
|
245
246
|
export interface HandlerWillRespondCallback {
|
|
246
|
-
(param: HandlerWillRespondCallbackParam):
|
|
247
|
+
(param: HandlerWillRespondCallbackParam): PromiseOrNot<Response>;
|
|
247
248
|
}
|
|
248
249
|
|
|
249
250
|
export interface HandlerDidErrorCallbackParam {
|
|
@@ -254,7 +255,7 @@ export interface HandlerDidErrorCallbackParam {
|
|
|
254
255
|
}
|
|
255
256
|
|
|
256
257
|
export interface HandlerDidErrorCallback {
|
|
257
|
-
(param: HandlerDidErrorCallbackParam):
|
|
258
|
+
(param: HandlerDidErrorCallbackParam): PromiseOrNot<Response | undefined>;
|
|
258
259
|
}
|
|
259
260
|
|
|
260
261
|
export interface HandlerDidRespondCallbackParam {
|
|
@@ -265,7 +266,7 @@ export interface HandlerDidRespondCallbackParam {
|
|
|
265
266
|
}
|
|
266
267
|
|
|
267
268
|
export interface HandlerDidRespondCallback {
|
|
268
|
-
(param: HandlerDidRespondCallbackParam):
|
|
269
|
+
(param: HandlerDidRespondCallbackParam): PromiseOrNot<any>;
|
|
269
270
|
}
|
|
270
271
|
|
|
271
272
|
export interface HandlerDidCompleteCallbackParam {
|
|
@@ -277,7 +278,7 @@ export interface HandlerDidCompleteCallbackParam {
|
|
|
277
278
|
}
|
|
278
279
|
|
|
279
280
|
export interface HandlerDidCompleteCallback {
|
|
280
|
-
(param: HandlerDidCompleteCallbackParam):
|
|
281
|
+
(param: HandlerDidCompleteCallbackParam): PromiseOrNot<any>;
|
|
281
282
|
}
|
|
282
283
|
|
|
283
284
|
/**
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.webworker.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/tslib@2.6.2/node_modules/tslib/tslib.d.ts","../../../node_modules/.pnpm/tslib@2.6.2/node_modules/tslib/modules/index.d.ts","../src/_private/cacheNames.ts","../src/cacheNames.ts","../src/clientsClaim.ts","../src/types.ts","../src/models/messages/messages.ts","../src/models/messages/messageGenerator.ts","../src/_private/SerwistError.ts","../src/_private/canConstructResponseFromBodyStream.ts","../src/copyResponse.ts","../src/_private/Deferred.ts","../src/_private/assert.ts","../src/_private/cacheMatchIgnoreParams.ts","../src/_private/canConstructReadableStream.ts","../src/_private/dontWaitFor.ts","../src/_private/logger.ts","../src/models/quotaErrorCallbacks.ts","../src/_private/executeQuotaErrorCallbacks.ts","../src/_private/getFriendlyURL.ts","../src/_private/timeout.ts","../src/_private/resultingClientExists.ts","../src/_private/waitUntil.ts","../src/index.internal.ts","../src/registerQuotaErrorCallback.ts","../src/setCacheNameDetails.ts","../src/index.ts","../src/models/pluginEvents.ts","../src/utils/pluginUtils.ts","../src/utils/welcome.ts","../../../node_modules/.pnpm/@types+eslint@8.44.5/node_modules/@types/eslint/helpers.d.ts","../../../node_modules/.pnpm/@types+estree@1.0.5/node_modules/@types/estree/index.d.ts","../../../node_modules/.pnpm/@types+json-schema@7.0.14/node_modules/@types/json-schema/index.d.ts","../../../node_modules/.pnpm/@types+eslint@8.44.5/node_modules/@types/eslint/index.d.ts","../../../node_modules/.pnpm/@types+eslint-scope@3.7.6/node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/globals.global.d.ts","../../../node_modules/.pnpm/@types+node@20.11.16/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@types+shell-quote@1.7.5/node_modules/@types/shell-quote/index.d.ts"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"21e41a76098aa7a191028256e52a726baafd45a925ea5cf0222eb430c96c1d83","affectsGlobalScope":true,"impliedFormat":1},{"version":"5746fca0ef5189a855357e258108524603574457c811ce8143e3279efde9f5b6","affectsGlobalScope":true,"impliedFormat":1},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0275cd0e42990dc3a16f0b7c8bca3efe87f1c8ad404f80c6db1c7c0b828c59f","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":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true,"impliedFormat":1},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"acae90d417bee324b1372813b5a00829d31c7eb670d299cd7f8f9a648ac05688","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900","impliedFormat":1},{"version":"31973b272be35eab5ecf20a38ea54bec84cdc0317117590cb813c72fe0ef75b3","impliedFormat":99},{"version":"32c154d6230e775383111fb3080f6a48df078a0be9c3826d25f9edfcc7efc666","impliedFormat":99},{"version":"c88246f126dffd0c25597bdefc523136ee407456b56c0be5005cd0480bd7197b","impliedFormat":99},{"version":"99a47859ada4dbb7130355e1a4b9fa41a2244754ea0df16e6529af0806a1a31f","impliedFormat":99},{"version":"f674fff3547fd13be235570bb9a9e1ad306e611d9ce9300499538e23a11944ec","impliedFormat":99},{"version":"b8ed549393120d8e470dae572696043a0d1278d1f2577ded4fbb8e32ca035b02","impliedFormat":99},{"version":"f6273a03059567044235c19f589b03b8e6a7e97bc6aa58291e424ffba8e9a4d8","impliedFormat":99},{"version":"efbf040d9474ed1f094c9e5154f993f08673c143185d2fe69938ccf14f7dded1","impliedFormat":99},{"version":"8a8915e196dbd7c135e2bfdb873b08f93061d1e1269d5292be68b0b79176385d","impliedFormat":99},{"version":"0252ca0c52b7053d72f4dfe055e078965e2a4abed3ef6e1d3159e91106313967","impliedFormat":99},{"version":"c9176cd23b72a533cbd0bacca7b22925cebbd82ad3697916559ed105b0244804","impliedFormat":99},{"version":"03cbcf7b1c369e9d0933d4fafd3e112ae87661f5e3c2fcfac8d2f2ba70197cf4","impliedFormat":99},{"version":"cc1d3e95eedd0e55d6939e4516983323605dd77a21b6857f4765dc68fe3c2699","impliedFormat":99},{"version":"0434368af0b1a0e61276c85497e36e171586986f9458037fe8f97da29f3ae7c6","impliedFormat":99},{"version":"711977d10408019d8e994206b3ed3c8e1cf978866894b2fdb537f8ceb4844cd0","impliedFormat":99},{"version":"a75d85968432ea66e095df35294dfae48906b39b9b89f60166ff79f96d48fcc1","affectsGlobalScope":true,"impliedFormat":99},{"version":"2bdb871b6f1fe97240b275666807168bec8a89462c66dfce8a621c3714a62775","impliedFormat":99},{"version":"ca56466819b19a00c0220a337fed6f4d00674f209548c3341739222d9c651481","impliedFormat":99},{"version":"165c267bc37b8f87bbc5e8e9b5d5a36239ca09fb5b3b439af405676385e663da","impliedFormat":99},{"version":"1b6a4fd2d767570637a4cae07fd495282b59822febe03406649ed958d5a79a6f","impliedFormat":99},{"version":"6cc9131b326da442e7f7a14c145a7f382d121dd57602887c074fbf8e43e84d8d","impliedFormat":99},{"version":"f10d15c6d5df86db0572024906f2dfdd35c8da121fba96ddf64cbb0cef66bf23","impliedFormat":99},{"version":"896aaab884051284bb335d749b7aef9c7eff0d82240d05417b8d2b937e630ad4","impliedFormat":99},{"version":"8dee94c063cecb7ad32f5cf4a3a15ef993cd6434c6d19c9d7881056d1762faa1","impliedFormat":99},{"version":"20d588796b315c82f3c70a4f8398df573c36bf31e2d6af6d6b829f41b3f45e0b","impliedFormat":99},{"version":"03d9f0e8c95cb3cf7aaffaec50d2194629b529598a3a2acfa23e5b301521cc52","impliedFormat":99},{"version":"f3f363111137087ce12511edb45514b6975a23816fac89b30508a678bc2d54fa","impliedFormat":99},{"version":"d4a90e4887a97eed98a52e819bf7b45ca22368d9f29cb25a72bf25922ad2b06b","impliedFormat":99},{"version":"8ee7531b286c94a63dcee8919f32512961be2260d28deb57c8f16e78064f90e2","impliedFormat":99},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true,"impliedFormat":1},{"version":"ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"df95e00612c1faa5e0e7ef0dba589b18665bbeb3221db2b6cee1fe4d0e61921f","impliedFormat":1},{"version":"1f68ab0e055994eb337b67aa87d2a15e0200951e9664959b3866ee6f6b11a0fe","impliedFormat":1},{"version":"efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","impliedFormat":1},{"version":"3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","impliedFormat":1},{"version":"e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","impliedFormat":1},{"version":"471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","impliedFormat":1},{"version":"c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","impliedFormat":1},{"version":"40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","impliedFormat":1},{"version":"8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","impliedFormat":1},{"version":"4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1","impliedFormat":1},{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true,"impliedFormat":1},{"version":"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c","impliedFormat":1},{"version":"e2eb1ce13a9c0fa7ab62c63909d81973ef4b707292667c64f1e25e6e53fa7afa","affectsGlobalScope":true,"impliedFormat":1},{"version":"16d74fe4d8e183344d3beb15d48b123c5980ff32ff0cc8c3b96614ddcdf9b239","impliedFormat":1},{"version":"7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba","impliedFormat":1},{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"a1d2988ad9d2aef7b9915a22b5e52c165c83a878f2851c35621409046bbe3c05","affectsGlobalScope":true,"impliedFormat":1},{"version":"bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","impliedFormat":1},{"version":"4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","impliedFormat":1},{"version":"8806ae97308ef26363bd7ec8071bca4d07fb575f905ee3d8a91aff226df6d618","impliedFormat":1},{"version":"af5bf1db6f1804fb0069039ae77a05d60133c77a2158d9635ea27b6bb2828a8f","impliedFormat":1},{"version":"b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e","impliedFormat":1},{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ae9dc7dbb58cd843065639707815df85c044babaa0947116f97bdb824d07204","affectsGlobalScope":true,"impliedFormat":1},{"version":"fe1fd6afdfe77976d4c702f3746c05fb05a7e566845c890e0e970fe9376d6a90","impliedFormat":1},{"version":"313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","impliedFormat":1},{"version":"f1ace2d2f98429e007d017c7a445efad2aaebf8233135abdb2c88b8c0fef91ab","impliedFormat":1},{"version":"87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","impliedFormat":1},{"version":"396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","impliedFormat":1},{"version":"21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac","impliedFormat":1},{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true,"impliedFormat":1},{"version":"440aa12c483d9dcd62b8cad2ddf4549ef3e54926c2aa6c78d520dcd320ba4980","impliedFormat":1},{"version":"45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","impliedFormat":1},{"version":"0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7","impliedFormat":1},{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true,"impliedFormat":1},{"version":"0666f4c99b8688c7be5956df8fecf5d1779d3b22f8f2a88258ae7072c7b6026f","affectsGlobalScope":true,"impliedFormat":1},{"version":"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","impliedFormat":1},{"version":"54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","impliedFormat":1},{"version":"d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","impliedFormat":1},{"version":"8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","impliedFormat":1},{"version":"01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","impliedFormat":1},{"version":"8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"7424817d5eb498771e6d1808d726ec38f75d2eaf3fa359edd5c0c540c52725c1","impliedFormat":1},{"version":"9a9634296cca836c3308923ba7aa094fa6ed76bb1e366d8ddcf5c65888ab1024","impliedFormat":1},{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true,"impliedFormat":1},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true,"impliedFormat":1},{"version":"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","impliedFormat":1},{"version":"4b55240c2a03b2c71e98a7fc528b16136faa762211c92e781a01c37821915ea6","impliedFormat":1},{"version":"7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","impliedFormat":1},{"version":"7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df","impliedFormat":1},{"version":"4d0405568cf6e0ff36a4861c4a77e641366feaefa751600b0a4d12a5e8f730a8","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true,"impliedFormat":1},{"version":"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","impliedFormat":1},{"version":"79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","impliedFormat":1},{"version":"37dc027f781c75f0f546e329cfac7cf92a6b289f42458f47a9adc25e516b6839","impliedFormat":1},{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","impliedFormat":1},{"version":"a315a141f52f92232e0e7756f77cfed8e3ecb031317166711fb5d906e404a2ac","impliedFormat":1}],"root":[[49,76]],"options":{"allowSyntheticDefaultImports":true,"checkJs":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"importHelpers":true,"module":199,"noEmitHelpers":true,"noErrorTruncation":true,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","removeComments":false,"skipLibCheck":true,"sourceMap":false,"strict":true,"target":99},"fileIdsList":[[78,80],[77,78,79],[82],[118],[119,124,152],[120,131,132,139,149,160],[120,121,131,139],[122,161],[123,124,132,140],[124,149,157],[125,127,131,139],[118,126],[127,128],[131],[129,131],[118,131],[131,132,133,149,160],[131,132,133,146,149,152],[116,119,165],[127,131,134,139,149,160],[131,132,134,135,139,149,157,160],[134,136,149,157,160],[82,83,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,166,167],[131,137],[138,160,165],[127,131,139,149],[140],[141],[118,142],[143,159,165],[144],[145],[131,146,147],[146,148,161,163],[119,131,149,150,151,152],[119,149,151],[149,150],[152],[153],[118,149],[131,155,156],[155,156],[124,139,149,157],[158],[139,159],[119,134,145,160],[124,161],[149,162],[138,163],[164],[119,124,131,133,142,149,160,163,165],[149,166],[47],[93,97,160],[93,149,160],[88],[90,93,157,160],[139,157],[168],[88,168],[90,93,139,160],[85,86,89,92,119,131,149,160],[85,91],[89,93,119,152,160,168],[119,168],[109,119,168],[87,88,168],[93],[87,88,89,90,91,92,93,94,95,97,98,99,100,101,102,103,104,105,106,107,108,110,111,112,113,114,115],[93,100,101],[91,93,101,102],[92],[85,88,93],[93,97,101,102],[97],[91,93,96,160],[85,90,91,93,97,100],[119,149],[88,93,109,119,165,168],[48],[48,52,53,54],[48,52,55],[48,63,64],[48,67],[48,49],[48,55,56],[48,49,55,56,58,59,60,61,62,63,65,66,67,68,69],[48,50,51,52,57,71,72],[48,52,53],[48,59,63,64],[48,49,55,59],[48,52],[48,63]],"referencedMap":[[81,1],[80,2],[82,3],[83,3],[118,4],[119,5],[120,6],[121,7],[122,8],[123,9],[124,10],[125,11],[126,12],[127,13],[128,13],[130,14],[129,15],[131,16],[132,17],[133,18],[117,19],[134,20],[135,21],[136,22],[168,23],[137,24],[138,25],[139,26],[140,27],[141,28],[142,29],[143,30],[144,31],[145,32],[146,33],[147,33],[148,34],[149,35],[151,36],[150,37],[152,38],[153,39],[154,40],[155,41],[156,42],[157,43],[158,44],[159,45],[160,46],[161,47],[162,48],[163,49],[164,50],[165,51],[166,52],[48,53],[100,54],[107,55],[99,54],[114,56],[91,57],[90,58],[113,59],[108,60],[111,61],[93,62],[92,63],[88,64],[87,65],[110,66],[89,67],[94,68],[98,68],[116,69],[115,68],[102,70],[103,71],[105,72],[101,73],[104,74],[109,59],[96,75],[97,76],[106,77],[86,78],[112,79],[58,80],[55,81],[59,82],[60,80],[49,80],[61,80],[56,80],[62,80],[65,83],[66,80],[63,80],[68,84],[67,80],[69,80],[50,85],[51,80],[57,86],[70,87],[73,88],[54,89],[53,80],[74,80],[64,80],[71,90],[72,91],[52,80],[75,92],[76,93]],"exportedModulesMap":[[81,1],[80,2],[82,3],[83,3],[118,4],[119,5],[120,6],[121,7],[122,8],[123,9],[124,10],[125,11],[126,12],[127,13],[128,13],[130,14],[129,15],[131,16],[132,17],[133,18],[117,19],[134,20],[135,21],[136,22],[168,23],[137,24],[138,25],[139,26],[140,27],[141,28],[142,29],[143,30],[144,31],[145,32],[146,33],[147,33],[148,34],[149,35],[151,36],[150,37],[152,38],[153,39],[154,40],[155,41],[156,42],[157,43],[158,44],[159,45],[160,46],[161,47],[162,48],[163,49],[164,50],[165,51],[166,52],[48,53],[100,54],[107,55],[99,54],[114,56],[91,57],[90,58],[113,59],[108,60],[111,61],[93,62],[92,63],[88,64],[87,65],[110,66],[89,67],[94,68],[98,68],[116,69],[115,68],[102,70],[103,71],[105,72],[101,73],[104,74],[109,59],[96,75],[97,76],[106,77],[86,78],[112,79],[58,80],[55,81],[59,82],[60,80],[49,80],[61,80],[56,80],[62,80],[65,83],[66,80],[63,80],[68,84],[67,80],[69,80],[50,85],[51,80],[57,86],[70,87],[73,88],[54,89],[53,80],[74,80],[64,80],[71,90],[72,91],[52,80],[75,92],[76,93]],"semanticDiagnosticsPerFile":[81,77,80,78,79,82,83,118,119,120,121,122,123,124,125,126,127,128,130,129,131,132,133,117,167,134,135,136,168,137,138,139,140,141,142,143,144,145,146,147,148,149,151,150,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,169,84,48,47,45,46,8,11,10,2,12,13,14,15,16,17,18,19,3,4,20,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,1,44,9,100,107,99,114,91,90,113,108,111,93,92,88,87,110,89,94,95,98,85,116,115,102,103,105,101,104,109,96,97,106,86,112,58,55,59,60,49,61,56,62,65,66,63,68,67,69,50,51,57,70,73,54,53,74,64,71,72,52,75,76]},"version":"5.3.3"}
|