@gjsify/zlib 0.0.2

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.
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../gjs/unit/src/index.ts", "src/index.spec.ts", "src/test.ts"],
4
+ "sourcesContent": ["import type GLib from '@gjsify/types/GLib-2.0';\nimport { versions } from 'process';\n\nconst mainloop: GLib.MainLoop | undefined = (globalThis as any)?.imports?.mainloop;\n\n// This file is part of the gjsunit framework\n// Please visit https://github.com/philipphoffmann/gjsunit for more information\n\nvar countTestsOverall = 0;\nvar countTestsFailed = 0;\n\nexport interface Namespaces {\n\t[key: string]: () => (void | Promise<void>) | Namespaces;\n}\n\n// Makes this work on Gjs and Node.js\nexport const print = globalThis.print || console.log;\n\nclass MatcherFactory {\n\n\tpublic not?: MatcherFactory;\n\n\tconstructor(protected readonly actualValue: any, protected readonly positive: boolean, withOpposite = true) {\n\t\tif (withOpposite) {\n\t\t\tthis.not = new MatcherFactory(actualValue, !positive, false);\n\t\t}\n\t}\n\n\ttriggerResult(success: boolean, msg: string) {\n\t\tif( (success && !this.positive) ||\n\t\t\t(!success && this.positive) ) {\n\t\t\t++countTestsFailed;\n\t\t\tthrow new Error(msg);\n\t\t}\n\t}\n\n\tto(callback: (actualValue: any) => boolean) {\n\t\tthis.triggerResult(callback(this.actualValue),\n\t\t\t' Expected callback to validate'\n\t\t);\n\t}\n\n\ttoBe(expectedValue: any) {\n\t\tthis.triggerResult(this.actualValue === expectedValue,\n\t\t\t' Expected values to match using ===\\n' +\n\t\t\t' Expected: ' + expectedValue + '\\n' +\n\t\t\t' Actual: ' + this.actualValue\n\t\t);\n\t}\n\n\ttoEqual(expectedValue: any) {\n\t\tthis.triggerResult(this.actualValue == expectedValue,\n\t\t\t' Expected values to match using ==\\n' +\n\t\t\t' Expected: ' + expectedValue + '\\n' +\n\t\t\t' Actual: ' + this.actualValue\n\t\t);\n\t}\n\n\ttoMatch(expectedValue: any) {\n\t\tif(typeof this.actualValue.match !== 'function') {\n\t\t\tthrow new Error(`You can not use toMatch on type ${typeof this.actualValue}`);\n\t\t}\n\t\tthis.triggerResult(!!this.actualValue.match(expectedValue),\n\t\t\t' Expected values to match using regular expression\\n' +\n\t\t\t' Expression: ' + expectedValue + '\\n' +\n\t\t\t' Actual: ' + this.actualValue\n\t\t);\n\t}\n\n\ttoBeDefined() {\n\t\tthis.triggerResult(typeof this.actualValue !== 'undefined',\n\t\t\t' Expected value to be defined'\n\t\t);\n\t}\n\n\ttoBeUndefined() {\n\t\tthis.triggerResult(typeof this.actualValue === 'undefined',\n\t\t\t' Expected value to be undefined'\n\t\t);\n\t}\n\n\ttoBeNull() {\n\t\tthis.triggerResult(this.actualValue === null,\n\t\t\t' Expected value to be null'\n\t\t);\n\t}\n\n\ttoBeTruthy() {\n\t\tthis.triggerResult(this.actualValue as unknown as boolean,\n\t\t\t' Expected value to be truthy'\n\t\t);\n\t}\n\n\ttoBeFalsy() {\n\t\tthis.triggerResult(!this.actualValue,\n\t\t\t' Expected value to be falsy'\n\t\t);\n\t}\n\n\ttoContain(needle: any) {\n\t\tthis.triggerResult(this.actualValue instanceof Array && this.actualValue.indexOf(needle) !== -1,\n\t\t\t' Expected ' + this.actualValue + ' to contain ' + needle\n\t\t);\n\t}\n\ttoBeLessThan(greaterValue: number) {\n\t\tthis.triggerResult(this.actualValue < greaterValue,\n\t\t\t' Expected ' + this.actualValue + ' to be less than ' + greaterValue\n\t\t);\n\t}\n\ttoBeGreaterThan(smallerValue: number) {\n\t\tthis.triggerResult(this.actualValue > smallerValue,\n\t\t\t' Expected ' + this.actualValue + ' to be greater than ' + smallerValue\n\t\t);\n\t}\n\ttoBeCloseTo(expectedValue: number, precision: number) {\n\t\tvar shiftHelper = Math.pow(10, precision);\n\t\tthis.triggerResult(Math.round((this.actualValue as unknown as number) * shiftHelper) / shiftHelper === Math.round(expectedValue * shiftHelper) / shiftHelper,\n\t\t\t' Expected ' + this.actualValue + ' with precision ' + precision + ' to be close to ' + expectedValue\n\t\t);\n\t}\n\ttoThrow() {\n\t\tlet errorMessage = ''; \n\t\tvar didThrow = false;\n\t\ttry {\n\t\t\tthis.actualValue();\n\t\t\tdidThrow = false;\n\t\t}\n\t\tcatch(e) {\n\t\t\terrorMessage = e.message || '';\n\t\t\tdidThrow = true;\n\t\t}\n\t\tconst functionName = this.actualValue.name || typeof this.actualValue === 'function' ? \"[anonymous function]\" : this.actualValue.toString();\n\t\tthis.triggerResult(didThrow,\n\t\t\t` Expected ${functionName} to ${this.positive ? 'throw' : 'not throw'} an exception ${!this.positive && errorMessage ? `, but an error with the message \"${errorMessage}\" was thrown` : ''}`\n\t\t);\n\t}\n}\n\nexport const describe = async function(moduleName: string, callback: () => void | Promise<void>) {\n\tprint('\\n' + moduleName);\n\tawait callback();\n};\n\nexport const it = async function(expectation: string, callback: () => void | Promise<void>) {\n\ttry {\n\t\tawait callback();\n\t\tprint(' \\x1B[32m\u2714\\x1B[39m \\x1B[90m' + expectation + '\\x1B[39m');\n\t}\n\tcatch(e) {\n\t\tprint(' \\x1B[31m\u274C\\x1B[39m \\x1B[90m' + expectation + '\\x1B[39m');\n\t\tprint('\\x1B[31m' + e.message + '\\x1B[39m');\n\t\t// if (e.stack) print(e.stack);\n\t}\n}\n\nexport const expect = function(actualValue: any) {\n\t++countTestsOverall;\n\n\tvar expecter = new MatcherFactory(actualValue, true);\n\n\treturn expecter;\n}\n\nconst runTests = async function(namespaces: Namespaces) {\n\t// recursively check the test directory for executable tests\n\tfor( var subNamespace in namespaces ) {\n\t\tconst namespace = namespaces[subNamespace];\n\t\t// execute any test functions\n\t\tif(typeof namespace === 'function' ) {\n\t\t\tawait namespace();\n\t\t}\n\t\t// descend into subfolders and objects\n\t\telse if( typeof namespace === 'object' ) {\n\t\t\tawait runTests(namespace);\n\t\t}\n\t}\n}\n\nconst printResult = () => {\n\tif( countTestsFailed ) {\n\t\t// some tests failed\n\t\tprint('\\n\\x1B[31m\u274C ' + countTestsFailed + ' of ' + countTestsOverall + ' tests failed\\x1B[39m');\n\t}\n\telse {\n\t\t// all tests okay\n\t\tprint('\\n\\x1B[32m\u2714 ' + countTestsOverall + ' completed\\x1B[39m');\n\t}\n}\n\nconst printRuntime = () => {\n\tif (versions.gjs) {\n\t\tprint(`Running on Gjs ${versions.gjs}`);\n\t} else if(versions.node) {\n\t\tprint(`Running on Node.js ${versions.node}`);\n\t} else {\n\t\tprint(`Running on unknown runtime`);\n\t}\n\t\n}\n\nexport const run = function(namespaces: Namespaces) {\n\tprintRuntime();\n\trunTests(namespaces)\n\t.then(() => {\n\t\tprintResult();\n\t\tprint();\n\t\tmainloop?.quit();\n\t})\n\n // Run the GJS mainloop for async operations\n mainloop?.run();\n}\n", "import { describe, it, expect } from '@gjsify/unit';\n\nimport { deflateRaw, inflateRaw, deflate, inflate, gzip, gunzip } from 'zlib';\n\nexport default async () => {\n\n\tawait describe('zlib.deflateRaw', async () => {\n\t\tawait it('should be a function', async () => {\n\t\t\texpect(typeof deflateRaw).toBe(\"function\");\n\t\t});\n\t});\n\n\tawait describe('zlib.inflateRaw', async () => {\n\t\tawait it('should be a function', async () => {\n\t\t\texpect(typeof inflateRaw).toBe(\"function\");\n\t\t});\n\t});\n\n\tawait describe('zlib.deflate', async () => {\n\t\tawait it('should be a function', async () => {\n\t\t\texpect(typeof deflate).toBe(\"function\");\n\t\t});\n\t});\n\n\tawait describe('zlib.inflate', async () => {\n\t\tawait it('should be a function', async () => {\n\t\t\texpect(typeof inflate).toBe(\"function\");\n\t\t});\n\t});\n\n\tawait describe('zlib.gzip', async () => {\n\t\tawait it('should be a function', async () => {\n\t\t\texpect(typeof gzip).toBe(\"function\");\n\t\t});\n\t});\n\n\tawait describe('zlib.gunzip', async () => {\n\t\tawait it('should be a function', async () => {\n\t\t\texpect(typeof gunzip).toBe(\"function\");\n\t\t});\n\t});\n\n}\n", "\nimport { run } from '@gjsify/unit';\n\nimport testSuite from './index.spec.js';\n\nrun({testSuite});"],
5
+ "mappings": "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",
6
+ "names": []
7
+ }
package/test.node.mjs ADDED
@@ -0,0 +1,333 @@
1
+ // ../../../node_modules/@girs/gjs/gjs.js
2
+ var imports = globalThis.imports || {};
3
+
4
+ // ../../gjs/unit/lib/esm/index.js
5
+ import nodeAssert from "assert";
6
+ var mainloop = globalThis?.imports?.mainloop;
7
+ var countTestsOverall = 0;
8
+ var countTestsFailed = 0;
9
+ var countTestsIgnored = 0;
10
+ var runtime = "";
11
+ var RED = "\x1B[31m";
12
+ var GREEN = "\x1B[32m";
13
+ var BLUE = "\x1B[34m";
14
+ var GRAY = "\x1B[90m";
15
+ var RESET = "\x1B[39m";
16
+ var print = globalThis.print || console.log;
17
+ var MatcherFactory = class {
18
+ constructor(actualValue, positive, negated) {
19
+ this.actualValue = actualValue;
20
+ this.positive = positive;
21
+ if (negated) {
22
+ this.not = negated;
23
+ } else {
24
+ this.not = new MatcherFactory(actualValue, !positive, this);
25
+ }
26
+ }
27
+ not;
28
+ triggerResult(success, msg) {
29
+ if (success && !this.positive || !success && this.positive) {
30
+ ++countTestsFailed;
31
+ throw new Error(msg);
32
+ }
33
+ }
34
+ to(callback) {
35
+ this.triggerResult(
36
+ callback(this.actualValue),
37
+ ` Expected callback to validate`
38
+ );
39
+ }
40
+ toBe(expectedValue) {
41
+ this.triggerResult(
42
+ this.actualValue === expectedValue,
43
+ ` Expected values to match using ===
44
+ Expected: ${expectedValue} (${typeof expectedValue})
45
+ Actual: ${this.actualValue} (${typeof this.actualValue})`
46
+ );
47
+ }
48
+ toEqual(expectedValue) {
49
+ this.triggerResult(
50
+ this.actualValue == expectedValue,
51
+ ` Expected values to match using ==
52
+ Expected: ${expectedValue} (${typeof expectedValue})
53
+ Actual: ${this.actualValue} (${typeof this.actualValue})`
54
+ );
55
+ }
56
+ toEqualArray(expectedValue) {
57
+ let success = Array.isArray(this.actualValue) && Array.isArray(expectedValue) && this.actualValue.length === expectedValue.length;
58
+ for (let i = 0; i < this.actualValue.length; i++) {
59
+ const actualVal = this.actualValue[i];
60
+ const expectedVal = expectedValue[i];
61
+ success = actualVal == expectedVal;
62
+ if (!success)
63
+ break;
64
+ }
65
+ this.triggerResult(
66
+ success,
67
+ ` Expected array items to match using ==
68
+ Expected: ${expectedValue} (${typeof expectedValue})
69
+ Actual: ${this.actualValue} (${typeof this.actualValue})`
70
+ );
71
+ }
72
+ toMatch(expectedValue) {
73
+ if (typeof this.actualValue.match !== "function") {
74
+ throw new Error(`You can not use toMatch on type ${typeof this.actualValue}`);
75
+ }
76
+ this.triggerResult(
77
+ !!this.actualValue.match(expectedValue),
78
+ " Expected values to match using regular expression\n Expression: " + expectedValue + "\n Actual: " + this.actualValue
79
+ );
80
+ }
81
+ toBeDefined() {
82
+ this.triggerResult(
83
+ typeof this.actualValue !== "undefined",
84
+ ` Expected value to be defined`
85
+ );
86
+ }
87
+ toBeUndefined() {
88
+ this.triggerResult(
89
+ typeof this.actualValue === "undefined",
90
+ ` Expected value to be undefined`
91
+ );
92
+ }
93
+ toBeNull() {
94
+ this.triggerResult(
95
+ this.actualValue === null,
96
+ ` Expected value to be null`
97
+ );
98
+ }
99
+ toBeTruthy() {
100
+ this.triggerResult(
101
+ this.actualValue,
102
+ ` Expected value to be truthy`
103
+ );
104
+ }
105
+ toBeFalsy() {
106
+ this.triggerResult(
107
+ !this.actualValue,
108
+ ` Expected value to be falsy`
109
+ );
110
+ }
111
+ toContain(needle) {
112
+ this.triggerResult(
113
+ this.actualValue instanceof Array && this.actualValue.indexOf(needle) !== -1,
114
+ ` Expected ` + this.actualValue + ` to contain ` + needle
115
+ );
116
+ }
117
+ toBeLessThan(greaterValue) {
118
+ this.triggerResult(
119
+ this.actualValue < greaterValue,
120
+ ` Expected ` + this.actualValue + ` to be less than ` + greaterValue
121
+ );
122
+ }
123
+ toBeGreaterThan(smallerValue) {
124
+ this.triggerResult(
125
+ this.actualValue > smallerValue,
126
+ ` Expected ` + this.actualValue + ` to be greater than ` + smallerValue
127
+ );
128
+ }
129
+ toBeCloseTo(expectedValue, precision) {
130
+ const shiftHelper = Math.pow(10, precision);
131
+ this.triggerResult(
132
+ Math.round(this.actualValue * shiftHelper) / shiftHelper === Math.round(expectedValue * shiftHelper) / shiftHelper,
133
+ ` Expected ` + this.actualValue + ` with precision ` + precision + ` to be close to ` + expectedValue
134
+ );
135
+ }
136
+ toThrow(ErrorType) {
137
+ let errorMessage = "";
138
+ let didThrow = false;
139
+ let typeMatch = true;
140
+ try {
141
+ this.actualValue();
142
+ didThrow = false;
143
+ } catch (e) {
144
+ errorMessage = e.message || "";
145
+ didThrow = true;
146
+ if (ErrorType) {
147
+ typeMatch = e instanceof ErrorType;
148
+ }
149
+ }
150
+ const functionName = this.actualValue.name || typeof this.actualValue === "function" ? "[anonymous function]" : this.actualValue.toString();
151
+ this.triggerResult(
152
+ didThrow,
153
+ ` Expected ${functionName} to ${this.positive ? "throw" : "not throw"} an exception ${!this.positive && errorMessage ? `, but an error with the message "${errorMessage}" was thrown` : ""}`
154
+ );
155
+ if (ErrorType) {
156
+ this.triggerResult(
157
+ typeMatch,
158
+ ` Expected Error type '${ErrorType.name}', but the error is not an instance of it`
159
+ );
160
+ }
161
+ }
162
+ };
163
+ var describe = async function(moduleName, callback) {
164
+ print("\n" + moduleName);
165
+ await callback();
166
+ beforeEachCb = null;
167
+ afterEachCb = null;
168
+ };
169
+ var beforeEachCb;
170
+ var afterEachCb;
171
+ var it = async function(expectation, callback) {
172
+ try {
173
+ if (typeof beforeEachCb === "function") {
174
+ await beforeEachCb();
175
+ }
176
+ await callback();
177
+ if (typeof afterEachCb === "function") {
178
+ await afterEachCb();
179
+ }
180
+ print(` ${GREEN}\u2714${RESET} ${GRAY}${expectation}${RESET}`);
181
+ } catch (e) {
182
+ print(` ${RED}\u274C${RESET} ${GRAY}${expectation}${RESET}`);
183
+ print(`${RED}${e.message}${RESET}`);
184
+ if (e.stack)
185
+ print(e.stack);
186
+ }
187
+ };
188
+ var expect = function(actualValue) {
189
+ ++countTestsOverall;
190
+ const expecter = new MatcherFactory(actualValue, true);
191
+ return expecter;
192
+ };
193
+ var assert = function(success, message) {
194
+ ++countTestsOverall;
195
+ if (!success) {
196
+ ++countTestsFailed;
197
+ }
198
+ nodeAssert(success, message);
199
+ };
200
+ assert.strictEqual = function(actual, expected, message) {
201
+ ++countTestsOverall;
202
+ try {
203
+ nodeAssert.strictEqual(actual, expected, message);
204
+ } catch (error) {
205
+ ++countTestsFailed;
206
+ throw error;
207
+ }
208
+ };
209
+ assert.throws = function(promiseFn, ...args) {
210
+ ++countTestsOverall;
211
+ let error;
212
+ try {
213
+ promiseFn();
214
+ } catch (e) {
215
+ error = e;
216
+ }
217
+ if (!error)
218
+ ++countTestsFailed;
219
+ nodeAssert.throws(() => {
220
+ if (error)
221
+ throw error;
222
+ }, args[0], args[1]);
223
+ };
224
+ assert.deepStrictEqual = function(actual, expected, message) {
225
+ ++countTestsOverall;
226
+ try {
227
+ nodeAssert.deepStrictEqual(actual, expected, message);
228
+ } catch (error) {
229
+ ++countTestsFailed;
230
+ throw error;
231
+ }
232
+ };
233
+ var runTests = async function(namespaces) {
234
+ for (const subNamespace in namespaces) {
235
+ const namespace = namespaces[subNamespace];
236
+ if (typeof namespace === "function") {
237
+ await namespace();
238
+ } else if (typeof namespace === "object") {
239
+ await runTests(namespace);
240
+ }
241
+ }
242
+ };
243
+ var printResult = () => {
244
+ if (countTestsIgnored) {
245
+ print(`
246
+ ${BLUE}\u2714 ${countTestsIgnored} ignored test${countTestsIgnored > 1 ? "s" : ""}${RESET}`);
247
+ }
248
+ if (countTestsFailed) {
249
+ print(`
250
+ ${RED}\u274C ${countTestsFailed} of ${countTestsOverall} tests failed${RESET}`);
251
+ } else {
252
+ print(`
253
+ ${GREEN}\u2714 ${countTestsOverall} completed${RESET}`);
254
+ }
255
+ };
256
+ var getRuntime = async () => {
257
+ if (runtime && runtime !== "Unknown") {
258
+ return runtime;
259
+ }
260
+ if (globalThis.Deno?.version?.deno) {
261
+ return "Deno " + globalThis.Deno?.version?.deno;
262
+ } else {
263
+ let process = globalThis.process;
264
+ if (!process) {
265
+ try {
266
+ process = await import("process");
267
+ } catch (error) {
268
+ console.error(error);
269
+ console.warn(error.message);
270
+ runtime = "Unknown";
271
+ }
272
+ }
273
+ if (process?.versions?.gjs) {
274
+ runtime = "Gjs " + process.versions.gjs;
275
+ } else if (process?.versions?.node) {
276
+ runtime = "Node.js " + process.versions.node;
277
+ }
278
+ }
279
+ return runtime || "Unknown";
280
+ };
281
+ var printRuntime = async () => {
282
+ const runtime2 = await getRuntime();
283
+ print(`
284
+ Running on ${runtime2}`);
285
+ };
286
+ var run = async (namespaces) => {
287
+ printRuntime().then(async () => {
288
+ return runTests(namespaces).then(() => {
289
+ printResult();
290
+ print();
291
+ mainloop?.quit();
292
+ });
293
+ });
294
+ mainloop?.run();
295
+ };
296
+
297
+ // src/index.spec.ts
298
+ import { deflateRaw, inflateRaw, deflate, inflate, gzip, gunzip } from "zlib";
299
+ var index_spec_default = async () => {
300
+ await describe("zlib.deflateRaw", async () => {
301
+ await it("should be a function", async () => {
302
+ expect(typeof deflateRaw).toBe("function");
303
+ });
304
+ });
305
+ await describe("zlib.inflateRaw", async () => {
306
+ await it("should be a function", async () => {
307
+ expect(typeof inflateRaw).toBe("function");
308
+ });
309
+ });
310
+ await describe("zlib.deflate", async () => {
311
+ await it("should be a function", async () => {
312
+ expect(typeof deflate).toBe("function");
313
+ });
314
+ });
315
+ await describe("zlib.inflate", async () => {
316
+ await it("should be a function", async () => {
317
+ expect(typeof inflate).toBe("function");
318
+ });
319
+ });
320
+ await describe("zlib.gzip", async () => {
321
+ await it("should be a function", async () => {
322
+ expect(typeof gzip).toBe("function");
323
+ });
324
+ });
325
+ await describe("zlib.gunzip", async () => {
326
+ await it("should be a function", async () => {
327
+ expect(typeof gunzip).toBe("function");
328
+ });
329
+ });
330
+ };
331
+
332
+ // src/test.mts
333
+ run({ testSuite: index_spec_default });
package/tsconfig.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "compilerOptions": {
3
+ "module": "ESNext",
4
+ "types": ["node"],
5
+ "target": "ESNext",
6
+ "experimentalDecorators": true,
7
+ "outDir": "lib",
8
+ "rootDir": "src",
9
+ "declarationDir": "lib/types",
10
+ "composite": true,
11
+ "moduleResolution": "bundler",
12
+ "allowImportingTsExtensions": true
13
+ },
14
+ "skipLibCheck": true,
15
+ "allowJs": true,
16
+ "checkJs": false,
17
+ "reflection": false,
18
+ "include": ["src/**/*.ts"]
19
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "emitDeclarationOnly": true,
5
+ "declarationDir": "lib/types",
6
+ },
7
+ "exclude": ["src/test.ts", "src/test.mts", "src/**/*.spec.ts", "src/**/*.spec.mts"]
8
+ }
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.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.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.sharedmemory.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.es2023.array.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/typescript/lib/lib.esnext.full.d.ts","../../deno/std/lib/node/internal_binding/constants.d.ts","../../deno/std/lib/node/_zlib.d.ts","../../deno/std/lib/node/zlib.d.ts","./src/index.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/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/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"f59215c5f1d886b05395ee7aca73e0ac69ddfad2843aa88530e797879d511bad","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","f4e736d6c8d69ae5b3ab0ddfcaa3dc365c3e76909d6660af5b4e979b3934ac20","eeeb3aca31fbadef8b82502484499dfd1757204799a6f5b33116201c810676ec",{"version":"3dda5344576193a4ae48b8d03f105c86f20b2f2aff0a1d1fd7935f5d68649654","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true},{"version":"c5c5565225fce2ede835725a92a28ece149f83542aa4866cfb10290bff7b8996","affectsGlobalScope":true},{"version":"7d2dbc2a0250400af0809b0ad5f84686e84c73526de931f84560e483eb16b03c","affectsGlobalScope":true},{"version":"9d9885c728913c1d16e0d2831b40341d6ad9a0ceecaabc55209b306ad9c736a5","affectsGlobalScope":true},{"version":"17bea081b9c0541f39dd1ae9bc8c78bdd561879a682e60e2f25f688c0ecab248","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"f06948deb2a51aae25184561c9640fb66afeddb34531a9212d011792b1d19e0a","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true},{"version":"930b0e15811f84e203d3c23508674d5ded88266df4b10abee7b31b2ac77632d2","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"25de46552b782d43cb7284df22fe2a265de387cf0248b747a7a1b647d81861f6","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"7823c8aa42d88e6cb454fe7dc56996c6fd174b28a9f050e9bdea1c25b7d114ea","4e850598b0dfebab5e71699eb19dbc9c32795e030234a7ddd3938d534298bb62","28d66ffec9f7858903c82e46d4eda7ee39e10cb85bd84d2bd8c85a29ead895c2","ab990a1e79eca1075f6dd235c31732f0e94338fa3f7b1d8178c9c8c5ec2cc2d6",{"version":"c9d351f4280ebdc7e35b711925ed7ec52cd15bad71f0bf194908525de00144e7","signature":"c7844e4fd9987768e97f584012a9417c34abed4fdb6ed7f9ffb0edaf5e490c76"},"587f13f1e8157bd8cec0adda0de4ef558bb8573daa9d518d1e2af38e87ecc91f","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"bce910d9164785c9f0d4dcea4be359f5f92130c7c7833dea6138ab1db310a1f9","affectsGlobalScope":true},"7a435e0c814f58f23e9a0979045ec0ef5909aac95a70986e8bcce30c27dff228",{"version":"a7534271773a27ff7d136d550e86b41894d8090fa857ba4c02b5bb18d2eb1c8e","affectsGlobalScope":true},"db71be322f07f769200108aa19b79a75dd19a187c9dca2a30c4537b233aa2863","57135ce61976a8b1dadd01bb412406d1805b90db6e8ecb726d0d78e0b5f76050",{"version":"49479e21a040c0177d1b1bc05a124c0383df7a08a0726ad4d9457619642e875a","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","b8e431e9b9bb2dc832b23d4e3e02774e953d5537998923f215ea446169e9a61e","3690133deae19c8127c5505fcb67b04bdc9eb053796008538a9b9abbb70d85aa","5b1c0a23f464f894e7c2b2b6c56df7b9afa60ed48c5345f8618d389a636b2108","be2b092f2765222757c6441b86c53a5ea8dfed47bbc43eab4c5fe37942c866b3","8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","1ca735bb3d407b2af4fbee7665f3a0a83be52168c728cc209755060ba7ed67bd",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"b85c02e14ecb2a873dad5a1de72319b265160ba48f1b83661aeb3bba1366c1bc","affectsGlobalScope":true},"7a2ba0c9af860ac3e77b35ed01fd96d15986f17aa22fe40f188ae556fb1070df","fc3764040518a1008dd04bdc80964591b566b896283e00df85c95851c1f46237","55709608060f77965c270ac10ac646286589f1bd1cb174fff1778a2dd9a7ef31","790623a47c5eda62910098884ecb154dc0e5f3a23fc36c1bfb3b5b9ed44e2c2d","42b40e40f2a358cda332456214fad311e1806a6abf3cebaaac72496e07556642","354612fe1d49ecc9551ea3a27d94eef2887b64ef4a71f72ca444efe0f2f0ba80",{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true},"f5490f53d40291cc8607f5463434d1ac6c5564bc4fbb03abceb03a8f6b014457","5e2b91328a540a0933ab5c2203f4358918e6f0fe7505d22840a891a6117735f1","3abc3512fa04aa0230f59ea1019311fd8667bd935d28306311dccc8b17e79d5d",{"version":"14a50dafe3f45713f7f27cb6320dff07c6ac31678f07959c2134260061bf91ff","affectsGlobalScope":true},{"version":"19da7150ca062323b1db6311a6ef058c9b0a39cc64d836b5e9b75d301869653b","affectsGlobalScope":true},"1349077576abb41f0e9c78ec30762ff75b710208aff77f5fdcc6a8c8ce6289dd","e2ce82603102b5c0563f59fb40314cc1ff95a4d521a66ad14146e130ea80d89c","a3e0395220255a350aa9c6d56f882bfcb5b85c19fddf5419ec822cf22246a26d","c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","898840e876dfd21843db9f2aa6ae38ba2eab550eb780ff62b894b9fbfebfae6b","0cab4d7d4edc40cd3af9eea7c3ed6d1016910c0954c49c4297e479bf3822a625","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","164deb2409ac5f4da3cd139dbcee7f7d66753d90363a4d7e2db8d8874f272270","1fb6c5ec52332a8b531a8d7a5300ac9301f98c4fe62f68e744e0841ccba65e7e",{"version":"ab294c4b7279318ee2a8fdf681305457ecc05970c94108d304933f18823eeac1","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","bbda6ea452a2386093a1eda18a6e26a989e98869f1b9f37e46f510a986d2e740","812b25f798033c202baedf386a1ccc41f9191b122f089bffd10fdccce99fba11","993325544790073f77e945bee046d53988c0bc3ac5695c9cf8098166feb82661",{"version":"75dd741ca6a6c8d2437a6ca8349b64b816421dbf9fe82dd026afaba965576962","affectsGlobalScope":true},{"version":"8799401a7ab57764f0d464513a7fa7c72e1d70a226b172ec60fff534ea94d108","affectsGlobalScope":true},"2ce2210032ccaff7710e2abf6a722e62c54960458e73e356b6a365c93ab6ca66","92db194ef7d208d5e4b6242a3434573fd142a621ff996d84cc9dbba3553277d0","16a3080e885ed52d4017c902227a8d0d8daf723d062bec9e45627c6fdcd6699b",{"version":"0bd9543cd8fc0959c76fb8f4f5a26626c2ed62ef4be98fd857bce268066db0a2","affectsGlobalScope":true},"1ca6858a0cbcd74d7db72d7b14c5360a928d1d16748a55ecfa6bfaff8b83071b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"247aa3419c98713231952b33801d4f46563fe542e03604acd8c63ac45a32409c"],"root":[68],"options":{"allowImportingTsExtensions":true,"composite":true,"declarationDir":"./lib/types","emitDeclarationOnly":true,"experimentalDecorators":true,"module":99,"outDir":"./lib","rootDir":"./src","target":99},"fileIdsList":[[69,115],[72,115],[73,78,106,115],[74,85,86,93,103,114,115],[74,75,85,93,115],[76,115],[77,78,86,94,115],[78,103,111,115],[79,81,85,93,115],[80,115],[81,82,115],[85,115],[83,85,115],[85,86,87,103,114,115],[85,86,87,100,103,106,115],[115,119],[115],[81,85,88,93,103,114,115],[85,86,88,89,93,103,111,114,115],[88,90,103,111,114,115],[69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121],[85,91,115],[92,114,115],[81,85,93,103,115],[94,115],[95,115],[72,96,115],[97,113,115,119],[98,115],[99,115],[85,100,101,115],[100,102,115,117],[73,85,103,104,105,106,115],[73,103,105,115],[103,104,115],[106,115],[107,115],[103,115],[85,109,110,115],[109,110,115],[78,93,103,111,115],[112,115],[93,113,115],[73,88,99,114,115],[78,115],[103,115,116],[115,117],[115,118],[73,78,85,87,96,103,114,115,117,119],[103,115,120],[65,66,115],[67,115],[67]],"referencedMap":[[69,1],[70,1],[72,2],[73,3],[74,4],[75,5],[76,6],[77,7],[78,8],[79,9],[80,10],[81,11],[82,11],[84,12],[83,13],[85,12],[86,14],[87,15],[71,16],[121,17],[88,18],[89,19],[90,20],[122,21],[91,22],[92,23],[93,24],[94,25],[95,26],[96,27],[97,28],[98,29],[99,30],[100,31],[101,31],[102,32],[103,33],[105,34],[104,35],[106,36],[107,37],[108,38],[109,39],[110,40],[111,41],[112,42],[113,43],[114,44],[115,45],[116,46],[117,47],[118,48],[119,49],[120,50],[62,17],[63,17],[12,17],[13,17],[17,17],[16,17],[2,17],[18,17],[19,17],[20,17],[21,17],[22,17],[23,17],[24,17],[25,17],[3,17],[4,17],[29,17],[26,17],[27,17],[28,17],[30,17],[31,17],[32,17],[5,17],[33,17],[34,17],[35,17],[36,17],[6,17],[40,17],[37,17],[38,17],[39,17],[41,17],[7,17],[42,17],[47,17],[48,17],[43,17],[44,17],[45,17],[46,17],[8,17],[52,17],[49,17],[50,17],[51,17],[53,17],[9,17],[54,17],[55,17],[56,17],[59,17],[57,17],[58,17],[60,17],[10,17],[1,17],[11,17],[64,17],[61,17],[15,17],[14,17],[66,17],[65,17],[67,51],[68,52]],"exportedModulesMap":[[69,1],[70,1],[72,2],[73,3],[74,4],[75,5],[76,6],[77,7],[78,8],[79,9],[80,10],[81,11],[82,11],[84,12],[83,13],[85,12],[86,14],[87,15],[71,16],[121,17],[88,18],[89,19],[90,20],[122,21],[91,22],[92,23],[93,24],[94,25],[95,26],[96,27],[97,28],[98,29],[99,30],[100,31],[101,31],[102,32],[103,33],[105,34],[104,35],[106,36],[107,37],[108,38],[109,39],[110,40],[111,41],[112,42],[113,43],[114,44],[115,45],[116,46],[117,47],[118,48],[119,49],[120,50],[62,17],[63,17],[12,17],[13,17],[17,17],[16,17],[2,17],[18,17],[19,17],[20,17],[21,17],[22,17],[23,17],[24,17],[25,17],[3,17],[4,17],[29,17],[26,17],[27,17],[28,17],[30,17],[31,17],[32,17],[5,17],[33,17],[34,17],[35,17],[36,17],[6,17],[40,17],[37,17],[38,17],[39,17],[41,17],[7,17],[42,17],[47,17],[48,17],[43,17],[44,17],[45,17],[46,17],[8,17],[52,17],[49,17],[50,17],[51,17],[53,17],[9,17],[54,17],[55,17],[56,17],[59,17],[57,17],[58,17],[60,17],[10,17],[1,17],[11,17],[64,17],[61,17],[15,17],[14,17],[66,17],[65,17],[67,51],[68,53]],"semanticDiagnosticsPerFile":[69,70,72,73,74,75,76,77,78,79,80,81,82,84,83,85,86,87,71,121,88,89,90,122,91,92,93,94,95,96,97,98,99,100,101,102,103,105,104,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,62,63,12,13,17,16,2,18,19,20,21,22,23,24,25,3,4,29,26,27,28,30,31,32,5,33,34,35,36,6,40,37,38,39,41,7,42,47,48,43,44,45,46,8,52,49,50,51,53,9,54,55,56,59,57,58,60,10,1,11,64,61,15,14,66,65,67,68],"latestChangedDtsFile":"./lib/types/index.d.ts"},"version":"5.1.3"}