@x-oasis/batchinator 0.0.5 → 0.0.6

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,62 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var Batchinator = /*#__PURE__*/function () {
6
+ function Batchinator(cb, delayMS) {
7
+ this._callback = cb;
8
+ this._delayMS = delayMS;
9
+ this._taskHandle = null;
10
+ this._args = null;
11
+ }
12
+ var _proto = Batchinator.prototype;
13
+ _proto.dispose = function dispose(options) {
14
+ if (options === void 0) {
15
+ options = {
16
+ abort: false
17
+ };
18
+ }
19
+ var _options = options,
20
+ abort = _options.abort;
21
+ if (this._taskHandle) {
22
+ this._taskHandle.cancel();
23
+ this._taskHandle = null;
24
+ }
25
+ if (typeof this._callback === 'function' && !abort) {
26
+ this._callback.apply(this, this._args);
27
+ }
28
+ };
29
+ _proto.inSchedule = function inSchedule() {
30
+ return !!this._taskHandle;
31
+ };
32
+ _proto.schedule = function schedule() {
33
+ var _this = this;
34
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
35
+ args[_key] = arguments[_key];
36
+ }
37
+ this._args = args;
38
+ if (this._taskHandle) return;
39
+ var handler = function handler() {
40
+ Promise.resolve().then(function () {
41
+ _this._taskHandle = null;
42
+ _this._callback.apply(_this, _this._args);
43
+ });
44
+ };
45
+ if (!this._delayMS) {
46
+ handler();
47
+ return;
48
+ }
49
+ var timeoutHandle = setTimeout(function () {
50
+ handler();
51
+ }, this._delayMS);
52
+ this._taskHandle = {
53
+ cancel: function cancel() {
54
+ return clearTimeout(timeoutHandle);
55
+ }
56
+ };
57
+ };
58
+ return Batchinator;
59
+ }();
60
+
61
+ exports.default = Batchinator;
62
+ //# sourceMappingURL=batchinator.cjs.development.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"batchinator.cjs.development.js","sources":["../src/index.ts"],"sourcesContent":["// import { InteractionManager } from 'react-native';\n\n// https://github.com/facebook/react-native/blob/main/Libraries/Interaction/Batchinator.js\n\nclass Batchinator {\n readonly _delayMS: number;\n private _args: Array<any>;\n\n private _callback: Function;\n private _taskHandle: {\n cancel: () => void;\n };\n\n constructor(cb: Function, delayMS: number) {\n this._callback = cb;\n this._delayMS = delayMS;\n this._taskHandle = null;\n this._args = null;\n }\n\n dispose(\n options: {\n abort: boolean;\n } = {\n abort: false,\n }\n ) {\n const { abort } = options;\n if (this._taskHandle) {\n this._taskHandle.cancel();\n this._taskHandle = null;\n }\n if (typeof this._callback === 'function' && !abort) {\n this._callback.apply(this, this._args);\n }\n }\n\n inSchedule() {\n return !!this._taskHandle;\n }\n\n schedule(...args) {\n this._args = args;\n\n if (this._taskHandle) return;\n const handler = () => {\n Promise.resolve().then(() => {\n this._taskHandle = null;\n this._callback.apply(this, this._args);\n });\n };\n\n if (!this._delayMS) {\n handler();\n return;\n }\n\n const timeoutHandle = setTimeout(() => {\n handler();\n }, this._delayMS);\n\n this._taskHandle = { cancel: () => clearTimeout(timeoutHandle) };\n }\n}\n\nexport default Batchinator;\n"],"names":["Batchinator","cb","delayMS","_callback","_delayMS","_taskHandle","_args","_proto","prototype","dispose","options","abort","_options","cancel","apply","inSchedule","schedule","args","Array","_len","_key","arguments","handler","Promise","resolve","then","_this","timeoutHandle","setTimeout","clearTimeout"],"mappings":";;;;IAIMA,WAAW;EASf,SAAAA,YAAYC,EAAY,EAAEC,OAAe;IACvC,IAAI,CAACC,SAAS,GAAGF,EAAE;IACnB,IAAI,CAACG,QAAQ,GAAGF,OAAO;IACvB,IAAI,CAACG,WAAW,GAAG,IAAI;IACvB,IAAI,CAACC,KAAK,GAAG,IAAI;;EAClB,IAAAC,MAAA,GAAAP,WAAA,CAAAQ,SAAA;EAAAD,MAAA,CAEDE,OAAO,GAAP,SAAAA,QACEC;QAAAA;MAAAA,UAEI;QACFC,KAAK,EAAE;OACR;;IAED,IAAAC,QAAA,GAAkBF,OAAO;MAAjBC,KAAK,GAAAC,QAAA,CAALD,KAAK;IACb,IAAI,IAAI,CAACN,WAAW,EAAE;MACpB,IAAI,CAACA,WAAW,CAACQ,MAAM,EAAE;MACzB,IAAI,CAACR,WAAW,GAAG,IAAI;;IAEzB,IAAI,OAAO,IAAI,CAACF,SAAS,KAAK,UAAU,IAAI,CAACQ,KAAK,EAAE;MAClD,IAAI,CAACR,SAAS,CAACW,KAAK,CAAC,IAAI,EAAE,IAAI,CAACR,KAAK,CAAC;;GAEzC;EAAAC,MAAA,CAEDQ,UAAU,GAAV,SAAAA;IACE,OAAO,CAAC,CAAC,IAAI,CAACV,WAAW;GAC1B;EAAAE,MAAA,CAEDS,QAAQ,GAAR,SAAAA;;sCAAYC,IAAI,OAAAC,KAAA,CAAAC,IAAA,GAAAC,IAAA,MAAAA,IAAA,GAAAD,IAAA,EAAAC,IAAA;MAAJH,IAAI,CAAAG,IAAA,IAAAC,SAAA,CAAAD,IAAA;;IACd,IAAI,CAACd,KAAK,GAAGW,IAAI;IAEjB,IAAI,IAAI,CAACZ,WAAW,EAAE;IACtB,IAAMiB,OAAO,GAAG,SAAVA,OAAOA;MACXC,OAAO,CAACC,OAAO,EAAE,CAACC,IAAI,CAAC;QACrBC,KAAI,CAACrB,WAAW,GAAG,IAAI;QACvBqB,KAAI,CAACvB,SAAS,CAACW,KAAK,CAACY,KAAI,EAAEA,KAAI,CAACpB,KAAK,CAAC;OACvC,CAAC;KACH;IAED,IAAI,CAAC,IAAI,CAACF,QAAQ,EAAE;MAClBkB,OAAO,EAAE;MACT;;IAGF,IAAMK,aAAa,GAAGC,UAAU,CAAC;MAC/BN,OAAO,EAAE;KACV,EAAE,IAAI,CAAClB,QAAQ,CAAC;IAEjB,IAAI,CAACC,WAAW,GAAG;MAAEQ,MAAM,EAAE,SAAAA;QAAA,OAAMgB,YAAY,CAACF,aAAa,CAAC;;KAAE;GACjE;EAAA,OAAA3B,WAAA;AAAA;;;;"}
@@ -0,0 +1,2 @@
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=function(){function t(t,a){this._callback=t,this._delayMS=a,this._taskHandle=null,this._args=null}var a=t.prototype;return a.dispose=function(t){void 0===t&&(t={abort:!1});var a=t.abort;this._taskHandle&&(this._taskHandle.cancel(),this._taskHandle=null),"function"!=typeof this._callback||a||this._callback.apply(this,this._args)},a.inSchedule=function(){return!!this._taskHandle},a.schedule=function(){for(var t=this,a=arguments.length,e=new Array(a),n=0;n<a;n++)e[n]=arguments[n];if(this._args=e,!this._taskHandle){var s=function(){Promise.resolve().then((function(){t._taskHandle=null,t._callback.apply(t,t._args)}))};if(this._delayMS){var l=setTimeout((function(){s()}),this._delayMS);this._taskHandle={cancel:function(){return clearTimeout(l)}}}else s()}},t}();
2
+ //# sourceMappingURL=batchinator.cjs.production.min.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"batchinator.cjs.production.min.js","sources":["../src/index.ts"],"sourcesContent":["// import { InteractionManager } from 'react-native';\n\n// https://github.com/facebook/react-native/blob/main/Libraries/Interaction/Batchinator.js\n\nclass Batchinator {\n readonly _delayMS: number;\n private _args: Array<any>;\n\n private _callback: Function;\n private _taskHandle: {\n cancel: () => void;\n };\n\n constructor(cb: Function, delayMS: number) {\n this._callback = cb;\n this._delayMS = delayMS;\n this._taskHandle = null;\n this._args = null;\n }\n\n dispose(\n options: {\n abort: boolean;\n } = {\n abort: false,\n }\n ) {\n const { abort } = options;\n if (this._taskHandle) {\n this._taskHandle.cancel();\n this._taskHandle = null;\n }\n if (typeof this._callback === 'function' && !abort) {\n this._callback.apply(this, this._args);\n }\n }\n\n inSchedule() {\n return !!this._taskHandle;\n }\n\n schedule(...args) {\n this._args = args;\n\n if (this._taskHandle) return;\n const handler = () => {\n Promise.resolve().then(() => {\n this._taskHandle = null;\n this._callback.apply(this, this._args);\n });\n };\n\n if (!this._delayMS) {\n handler();\n return;\n }\n\n const timeoutHandle = setTimeout(() => {\n handler();\n }, this._delayMS);\n\n this._taskHandle = { cancel: () => clearTimeout(timeoutHandle) };\n }\n}\n\nexport default Batchinator;\n"],"names":["Batchinator","cb","delayMS","this","_callback","_delayMS","_taskHandle","_args","_proto","prototype","dispose","options","abort","cancel","apply","inSchedule","schedule","args","Array","_len","_key","arguments","handler","Promise","resolve","then","_this","timeoutHandle","setTimeout","clearTimeout"],"mappings":"+FAaE,SAAAA,EAAYC,EAAcC,GACxBC,KAAKC,UAAYH,EACjBE,KAAKE,SAAWH,EAChBC,KAAKG,YAAc,KACnBH,KAAKI,MAAQ,KACd,IAAAC,EAAAR,EAAAS,UA4CA,OA5CAD,EAEDE,QAAA,SACEC,YAAAA,IAAAA,EAEI,CACFC,OAAO,IAGT,IAAQA,EAAUD,EAAVC,MACJT,KAAKG,cACPH,KAAKG,YAAYO,SACjBV,KAAKG,YAAc,MAES,mBAAnBH,KAAKC,WAA6BQ,GAC3CT,KAAKC,UAAUU,MAAMX,KAAMA,KAAKI,QAEnCC,EAEDO,WAAA,WACE,QAASZ,KAAKG,aACfE,EAEDQ,SAAA,6CAAYC,MAAIC,MAAAC,GAAAC,IAAAA,EAAAD,EAAAC,IAAJH,EAAIG,GAAAC,UAAAD,GAGd,GAFAjB,KAAKI,MAAQU,GAETd,KAAKG,YAAT,CACA,IAAMgB,EAAU,WACdC,QAAQC,UAAUC,MAAK,WACrBC,EAAKpB,YAAc,KACnBoB,EAAKtB,UAAUU,MAAMY,EAAMA,EAAKnB,WAIpC,GAAKJ,KAAKE,SAAV,CAKA,IAAMsB,EAAgBC,YAAW,WAC/BN,MACCnB,KAAKE,UAERF,KAAKG,YAAc,CAAEO,OAAQ,WAAA,OAAMgB,aAAaF,UAR9CL,MASHtB"}
@@ -0,0 +1,58 @@
1
+ var Batchinator = /*#__PURE__*/function () {
2
+ function Batchinator(cb, delayMS) {
3
+ this._callback = cb;
4
+ this._delayMS = delayMS;
5
+ this._taskHandle = null;
6
+ this._args = null;
7
+ }
8
+ var _proto = Batchinator.prototype;
9
+ _proto.dispose = function dispose(options) {
10
+ if (options === void 0) {
11
+ options = {
12
+ abort: false
13
+ };
14
+ }
15
+ var _options = options,
16
+ abort = _options.abort;
17
+ if (this._taskHandle) {
18
+ this._taskHandle.cancel();
19
+ this._taskHandle = null;
20
+ }
21
+ if (typeof this._callback === 'function' && !abort) {
22
+ this._callback.apply(this, this._args);
23
+ }
24
+ };
25
+ _proto.inSchedule = function inSchedule() {
26
+ return !!this._taskHandle;
27
+ };
28
+ _proto.schedule = function schedule() {
29
+ var _this = this;
30
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
31
+ args[_key] = arguments[_key];
32
+ }
33
+ this._args = args;
34
+ if (this._taskHandle) return;
35
+ var handler = function handler() {
36
+ Promise.resolve().then(function () {
37
+ _this._taskHandle = null;
38
+ _this._callback.apply(_this, _this._args);
39
+ });
40
+ };
41
+ if (!this._delayMS) {
42
+ handler();
43
+ return;
44
+ }
45
+ var timeoutHandle = setTimeout(function () {
46
+ handler();
47
+ }, this._delayMS);
48
+ this._taskHandle = {
49
+ cancel: function cancel() {
50
+ return clearTimeout(timeoutHandle);
51
+ }
52
+ };
53
+ };
54
+ return Batchinator;
55
+ }();
56
+
57
+ export default Batchinator;
58
+ //# sourceMappingURL=batchinator.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"batchinator.esm.js","sources":["../src/index.ts"],"sourcesContent":["// import { InteractionManager } from 'react-native';\n\n// https://github.com/facebook/react-native/blob/main/Libraries/Interaction/Batchinator.js\n\nclass Batchinator {\n readonly _delayMS: number;\n private _args: Array<any>;\n\n private _callback: Function;\n private _taskHandle: {\n cancel: () => void;\n };\n\n constructor(cb: Function, delayMS: number) {\n this._callback = cb;\n this._delayMS = delayMS;\n this._taskHandle = null;\n this._args = null;\n }\n\n dispose(\n options: {\n abort: boolean;\n } = {\n abort: false,\n }\n ) {\n const { abort } = options;\n if (this._taskHandle) {\n this._taskHandle.cancel();\n this._taskHandle = null;\n }\n if (typeof this._callback === 'function' && !abort) {\n this._callback.apply(this, this._args);\n }\n }\n\n inSchedule() {\n return !!this._taskHandle;\n }\n\n schedule(...args) {\n this._args = args;\n\n if (this._taskHandle) return;\n const handler = () => {\n Promise.resolve().then(() => {\n this._taskHandle = null;\n this._callback.apply(this, this._args);\n });\n };\n\n if (!this._delayMS) {\n handler();\n return;\n }\n\n const timeoutHandle = setTimeout(() => {\n handler();\n }, this._delayMS);\n\n this._taskHandle = { cancel: () => clearTimeout(timeoutHandle) };\n }\n}\n\nexport default Batchinator;\n"],"names":["Batchinator","cb","delayMS","_callback","_delayMS","_taskHandle","_args","_proto","prototype","dispose","options","abort","_options","cancel","apply","inSchedule","schedule","args","Array","_len","_key","arguments","handler","Promise","resolve","then","_this","timeoutHandle","setTimeout","clearTimeout"],"mappings":"IAIMA,WAAW;EASf,SAAAA,YAAYC,EAAY,EAAEC,OAAe;IACvC,IAAI,CAACC,SAAS,GAAGF,EAAE;IACnB,IAAI,CAACG,QAAQ,GAAGF,OAAO;IACvB,IAAI,CAACG,WAAW,GAAG,IAAI;IACvB,IAAI,CAACC,KAAK,GAAG,IAAI;;EAClB,IAAAC,MAAA,GAAAP,WAAA,CAAAQ,SAAA;EAAAD,MAAA,CAEDE,OAAO,GAAP,SAAAA,QACEC;QAAAA;MAAAA,UAEI;QACFC,KAAK,EAAE;OACR;;IAED,IAAAC,QAAA,GAAkBF,OAAO;MAAjBC,KAAK,GAAAC,QAAA,CAALD,KAAK;IACb,IAAI,IAAI,CAACN,WAAW,EAAE;MACpB,IAAI,CAACA,WAAW,CAACQ,MAAM,EAAE;MACzB,IAAI,CAACR,WAAW,GAAG,IAAI;;IAEzB,IAAI,OAAO,IAAI,CAACF,SAAS,KAAK,UAAU,IAAI,CAACQ,KAAK,EAAE;MAClD,IAAI,CAACR,SAAS,CAACW,KAAK,CAAC,IAAI,EAAE,IAAI,CAACR,KAAK,CAAC;;GAEzC;EAAAC,MAAA,CAEDQ,UAAU,GAAV,SAAAA;IACE,OAAO,CAAC,CAAC,IAAI,CAACV,WAAW;GAC1B;EAAAE,MAAA,CAEDS,QAAQ,GAAR,SAAAA;;sCAAYC,IAAI,OAAAC,KAAA,CAAAC,IAAA,GAAAC,IAAA,MAAAA,IAAA,GAAAD,IAAA,EAAAC,IAAA;MAAJH,IAAI,CAAAG,IAAA,IAAAC,SAAA,CAAAD,IAAA;;IACd,IAAI,CAACd,KAAK,GAAGW,IAAI;IAEjB,IAAI,IAAI,CAACZ,WAAW,EAAE;IACtB,IAAMiB,OAAO,GAAG,SAAVA,OAAOA;MACXC,OAAO,CAACC,OAAO,EAAE,CAACC,IAAI,CAAC;QACrBC,KAAI,CAACrB,WAAW,GAAG,IAAI;QACvBqB,KAAI,CAACvB,SAAS,CAACW,KAAK,CAACY,KAAI,EAAEA,KAAI,CAACpB,KAAK,CAAC;OACvC,CAAC;KACH;IAED,IAAI,CAAC,IAAI,CAACF,QAAQ,EAAE;MAClBkB,OAAO,EAAE;MACT;;IAGF,IAAMK,aAAa,GAAGC,UAAU,CAAC;MAC/BN,OAAO,EAAE;KACV,EAAE,IAAI,CAAClB,QAAQ,CAAC;IAEjB,IAAI,CAACC,WAAW,GAAG;MAAEQ,MAAM,EAAE,SAAAA;QAAA,OAAMgB,YAAY,CAACF,aAAa,CAAC;;KAAE;GACjE;EAAA,OAAA3B,WAAA;AAAA;;;;"}
@@ -1,13 +1,13 @@
1
- declare class Batchinator {
2
- readonly _delayMS: number;
3
- private _args;
4
- private _callback;
5
- private _taskHandle;
6
- constructor(cb: Function, delayMS: number);
7
- dispose(options?: {
8
- abort: boolean;
9
- }): void;
10
- inSchedule(): boolean;
11
- schedule(...args: any[]): void;
12
- }
13
- export default Batchinator;
1
+ declare class Batchinator {
2
+ readonly _delayMS: number;
3
+ private _args;
4
+ private _callback;
5
+ private _taskHandle;
6
+ constructor(cb: Function, delayMS: number);
7
+ dispose(options?: {
8
+ abort: boolean;
9
+ }): void;
10
+ inSchedule(): boolean;
11
+ schedule(...args: any[]): void;
12
+ }
13
+ export default Batchinator;
package/dist/index.js ADDED
@@ -0,0 +1,8 @@
1
+
2
+ 'use strict'
3
+
4
+ if (process.env.NODE_ENV === 'production') {
5
+ module.exports = require('./batchinator.cjs.production.min.js')
6
+ } else {
7
+ module.exports = require('./batchinator.cjs.development.js')
8
+ }
package/package.json CHANGED
@@ -1,12 +1,17 @@
1
1
  {
2
2
  "name": "@x-oasis/batchinator",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "batchinator function",
5
- "main": "index.ts",
5
+ "main": "dist/index.js",
6
+ "typings": "dist/index.d.ts",
7
+ "module": "dist/batchinator.esm.js",
6
8
  "author": "",
7
9
  "license": "ISC",
10
+ "devDependencies": {
11
+ "tsdx": "^0.14.1"
12
+ },
8
13
  "scripts": {
9
- "build": "pnpm run clean && pnpm run compile",
14
+ "build": "tsdx build --tsconfig tsconfig.build.json",
10
15
  "clean": "rimraf ./dist",
11
16
  "test": "vitest",
12
17
  "compile": "tsc -p tsconfig.build.json"
package/dist/src/index.js DELETED
@@ -1,47 +0,0 @@
1
- class Batchinator {
2
- _delayMS;
3
- _args;
4
- _callback;
5
- _taskHandle;
6
- constructor(cb, delayMS) {
7
- this._callback = cb;
8
- this._delayMS = delayMS;
9
- this._taskHandle = null;
10
- this._args = null;
11
- }
12
- dispose(options = {
13
- abort: false,
14
- }) {
15
- const { abort } = options;
16
- if (this._taskHandle) {
17
- this._taskHandle.cancel();
18
- this._taskHandle = null;
19
- }
20
- if (typeof this._callback === 'function' && !abort) {
21
- this._callback.apply(this, this._args);
22
- }
23
- }
24
- inSchedule() {
25
- return !!this._taskHandle;
26
- }
27
- schedule(...args) {
28
- this._args = args;
29
- if (this._taskHandle)
30
- return;
31
- const handler = () => {
32
- Promise.resolve().then(() => {
33
- this._taskHandle = null;
34
- this._callback.apply(this, this._args);
35
- });
36
- };
37
- if (!this._delayMS) {
38
- handler();
39
- return;
40
- }
41
- const timeoutHandle = setTimeout(() => {
42
- handler();
43
- }, this._delayMS);
44
- this._taskHandle = { cancel: () => clearTimeout(timeoutHandle) };
45
- }
46
- }
47
- export default Batchinator;
@@ -1 +0,0 @@
1
- {"program":{"fileNames":["../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.esnext.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/.pnpm/typescript@4.8.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../src/index.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/assert.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/assert/strict.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/globals.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/async_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/buffer.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/child_process.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/cluster.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/console.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/constants.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/crypto.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/dgram.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/dns.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/dns/promises.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/domain.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/events.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/fs.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/fs/promises.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/http.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/http2.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/https.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/inspector.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/module.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/net.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/os.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/path.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/process.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/punycode.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/querystring.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/readline.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/repl.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/stream.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/stream/promises.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/stream/consumers.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/stream/web.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/string_decoder.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/test.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/timers.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/timers/promises.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/tls.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/trace_events.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/tty.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/url.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/util.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/v8.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/vm.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/wasi.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/worker_threads.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/zlib.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/globals.global.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.14/node_modules/@types/node/ts4.8/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"9b087de7268e4efc5f215347a62656663933d63c0b1d7b624913240367b999ea","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},{"version":"46b1815b9325d21a70e851dc5df61550425d80469e2d0968c5eeb2d73ecb2114","signature":"273709d69a8ca4159ff00b22a037b9fa751ea96ee065f04915321b1e0b964b1d"},"4911d4c3a7f7c11bad0e2cec329a19a385d10ea83b0b69c76e032359e388f624","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"2f6c9750131d5d2fdaba85c164a930dc07d2d7e7e8970b89d32864aa6c72620c","affectsGlobalScope":true},"56d13f223ab40f71840795f5bef2552a397a70666ee60878222407f3893fb8d0",{"version":"4ffef5c4698e94e49dcf150e3270bad2b24a2aeab48b24acbe7c1366edff377d","affectsGlobalScope":true},"2534e46a52653b55dfb5a41ce427ec430c4afbaaf3bfcb1ae09b185c5d6bf169","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","3e44bd1bba0164e48cab51e327112a6f894275f79459675feae619738481a3ee","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","8bd106053ee0345dde7f626ed1f6100a89fb85f13ea65352627cf78c5f30c553","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","06ccebc2c2db57d6bdbca63b71c4ae5e6ddc42d972fd8f122d4c1a28aa111b25",{"version":"81e8508d1e82278f5d3fee936f267e00c308af36219bfcee2631f9513c9c4017","affectsGlobalScope":true},"413a4be7f94f631235bbc83dad36c4d15e5a2ff02bca1efdbd03636d6454631b","20c468256fd68d3ef1fa53526e76d51d6aa91711e84d72c0343589b99238287e","4198acced75d48a039c078734c4efca7788ff8c78609c270a2b63ec20e3e1676","8d4c16a26d59e3ce49741a7d4a6e8206b884e226cf308667c7778a0b2c0fee7f","288dd0c774a5c6e3964084c7a2bc8cc6b746d70f44a9892d028d04f915cf7ebc","d61c7c41eb1960b1285e242fd102c162b65c0522985b839fadda59874308a170",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"f7011a8d17a06e60dc591fd89b7bf40507d36a5a4d5913fa0eff4e18da001759","d10f4929cd610c26926d6784fc3f9f4120b789c03081b5d65fb2d2670a00fa04","fb0989383c6109f20281b3d31265293daefdd76d0d30551782c1654e93704f48","a4210a84a82b3e7a8cec5b2f3616e46d523f4f10cc1576d8f2fb89d0987b341e",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","22d48bfb37261136423ac687f1fa7bd4dda3083f767416d409a8260cf92bc8fc","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","f142151303f0792b81eff90b554081d2b78b146a83a4bc573228338e70afa420","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","698ab660b477b9c2cd5ccbd99e7e7df8b4a6134c1f5711fa615ed7aab51cb7f7","33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637","a4471d2bdba495b2a6a30b8765d5e0282fa7009d88345a9528f73c37869d3b93",{"version":"aee7013623e7632fba449d4df1da92925b27d9b816cb05546044dbfe54c88ef4","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c9d70d3d7191a66a81cb554557f8ed1cf736ea8397c44a864fe52689de18865a","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",{"version":"1aad825534c73852a1f3275e527d729a2c0640f539198fdfdfeb83b839851910","affectsGlobalScope":true},"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e3685a8957b4e2af64c3f04a58289ee0858a649dbcd963a2b897fe85858ae18a"],"options":{"allowUnreachableCode":false,"allowUnusedLabels":false,"composite":true,"declaration":true,"esModuleInterop":true,"jsx":3,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noImplicitUseStrict":false,"noStrictGenericChecks":false,"outDir":"./","removeComments":true,"skipLibCheck":true,"target":99},"fileIdsList":[[56,100],[59,100],[60,65,91,100],[61,71,72,79,88,99,100],[61,62,71,79,100],[63,100],[64,65,72,80,100],[65,88,96,100],[66,68,71,79,100],[67,100],[68,69,100],[70,71,100],[71,100],[71,72,73,88,99,100],[71,72,73,88,100],[100],[74,79,88,99,100],[71,72,74,75,79,88,96,99,100],[74,76,88,96,99,100],[56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106],[71,77,100],[78,99,100],[68,71,79,88,100],[80,100],[81,100],[59,82,100],[83,98,100,104],[84,100],[85,100],[71,86,100],[86,87,100,102],[60,71,88,89,90,100],[60,88,90,100],[88,89,100],[91,100],[92,100],[71,94,95,100],[94,95,100],[65,79,96,100],[97,100],[79,98,100],[60,74,85,99,100],[65,100],[88,100,101],[100,102],[100,103],[60,65,71,73,82,88,99,100,102,104],[88,100,105]],"referencedMap":[[56,1],[57,1],[59,2],[60,3],[61,4],[62,5],[63,6],[64,7],[65,8],[66,9],[67,10],[68,11],[69,11],[70,12],[71,13],[72,14],[73,15],[58,16],[106,16],[74,17],[75,18],[76,19],[107,20],[77,21],[78,22],[79,23],[80,24],[81,25],[82,26],[83,27],[84,28],[85,29],[86,30],[87,31],[88,32],[90,33],[89,34],[91,35],[92,36],[93,16],[94,37],[95,38],[96,39],[97,40],[98,41],[99,42],[100,43],[101,44],[102,45],[103,46],[104,47],[105,48],[11,16],[13,16],[12,16],[2,16],[14,16],[15,16],[16,16],[17,16],[18,16],[19,16],[20,16],[21,16],[3,16],[4,16],[25,16],[22,16],[23,16],[24,16],[26,16],[27,16],[28,16],[5,16],[29,16],[30,16],[31,16],[32,16],[6,16],[33,16],[34,16],[35,16],[36,16],[7,16],[37,16],[42,16],[43,16],[38,16],[39,16],[40,16],[41,16],[8,16],[47,16],[44,16],[45,16],[46,16],[48,16],[9,16],[49,16],[50,16],[51,16],[52,16],[53,16],[1,16],[10,16],[54,16],[55,16]],"exportedModulesMap":[[56,1],[57,1],[59,2],[60,3],[61,4],[62,5],[63,6],[64,7],[65,8],[66,9],[67,10],[68,11],[69,11],[70,12],[71,13],[72,14],[73,15],[58,16],[106,16],[74,17],[75,18],[76,19],[107,20],[77,21],[78,22],[79,23],[80,24],[81,25],[82,26],[83,27],[84,28],[85,29],[86,30],[87,31],[88,32],[90,33],[89,34],[91,35],[92,36],[93,16],[94,37],[95,38],[96,39],[97,40],[98,41],[99,42],[100,43],[101,44],[102,45],[103,46],[104,47],[105,48],[11,16],[13,16],[12,16],[2,16],[14,16],[15,16],[16,16],[17,16],[18,16],[19,16],[20,16],[21,16],[3,16],[4,16],[25,16],[22,16],[23,16],[24,16],[26,16],[27,16],[28,16],[5,16],[29,16],[30,16],[31,16],[32,16],[6,16],[33,16],[34,16],[35,16],[36,16],[7,16],[37,16],[42,16],[43,16],[38,16],[39,16],[40,16],[41,16],[8,16],[47,16],[44,16],[45,16],[46,16],[48,16],[9,16],[49,16],[50,16],[51,16],[52,16],[53,16],[1,16],[10,16],[54,16]],"semanticDiagnosticsPerFile":[56,57,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,58,106,74,75,76,107,77,78,79,80,81,82,83,84,85,86,87,88,90,89,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,11,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,37,42,43,38,39,40,41,8,47,44,45,46,48,9,49,50,51,52,53,1,10,54,55],"latestChangedDtsFile":"./src/index.d.ts"},"version":"4.8.3"}