@x-oasis/select-value 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.
@@ -1,19 +1,19 @@
1
- import { LayoutWithOffset, LayoutWithSize, SelectValueProps, _Dimensions } from './types';
2
- declare class SelectValue {
3
- readonly horizontal: boolean;
4
- constructor(props: SelectValueProps);
5
- selectOffset(layout: LayoutWithOffset): number;
6
- setLength(layout: _Dimensions, length: number): void;
7
- selectLength(layout: LayoutWithSize): number;
8
- selectTranslate(): "translateX" | "translateY";
9
- revertLength(length: number): {
10
- width: number;
11
- height: any;
12
- } | {
13
- height: number;
14
- width: any;
15
- };
16
- }
17
- export declare const selectHorizontalValue: SelectValue;
18
- export declare const selectVerticalValue: SelectValue;
19
- export default SelectValue;
1
+ import { LayoutWithOffset, LayoutWithSize, SelectValueProps, _Dimensions } from './types';
2
+ declare class SelectValue {
3
+ readonly horizontal: boolean;
4
+ constructor(props: SelectValueProps);
5
+ selectOffset(layout: LayoutWithOffset): number;
6
+ setLength(layout: _Dimensions, length: number): void;
7
+ selectLength(layout: LayoutWithSize): number;
8
+ selectTranslate(): "translateX" | "translateY";
9
+ revertLength(length: number): {
10
+ width: number;
11
+ height: any;
12
+ } | {
13
+ height: number;
14
+ width: any;
15
+ };
16
+ }
17
+ export declare const selectHorizontalValue: SelectValue;
18
+ export declare const selectVerticalValue: SelectValue;
19
+ export default SelectValue;
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('./select-value.cjs.production.min.js')
6
+ } else {
7
+ module.exports = require('./select-value.cjs.development.js')
8
+ }
@@ -0,0 +1,48 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var SelectValue = /*#__PURE__*/function () {
6
+ function SelectValue(props) {
7
+ var horizontal = props.horizontal;
8
+ this.horizontal = horizontal;
9
+ this.selectLength = this.selectLength.bind(this);
10
+ this.selectOffset = this.selectOffset.bind(this);
11
+ this.selectTranslate = this.selectTranslate.bind(this);
12
+ this.revertLength = this.revertLength.bind(this);
13
+ }
14
+ var _proto = SelectValue.prototype;
15
+ _proto.selectOffset = function selectOffset(layout) {
16
+ return this.horizontal ? layout.x : layout.y;
17
+ };
18
+ _proto.setLength = function setLength(layout, length) {
19
+ if (this.horizontal) layout.width = length;else layout.height = length;
20
+ };
21
+ _proto.selectLength = function selectLength(layout) {
22
+ return this.horizontal ? layout.width : layout.height;
23
+ };
24
+ _proto.selectTranslate = function selectTranslate() {
25
+ return this.horizontal ? 'translateX' : 'translateY';
26
+ };
27
+ _proto.revertLength = function revertLength(length) {
28
+ return this.horizontal ? {
29
+ width: length,
30
+ height: null
31
+ } : {
32
+ height: length,
33
+ width: null
34
+ };
35
+ };
36
+ return SelectValue;
37
+ }();
38
+ var selectHorizontalValue = /*#__PURE__*/new SelectValue({
39
+ horizontal: true
40
+ });
41
+ var selectVerticalValue = /*#__PURE__*/new SelectValue({
42
+ horizontal: false
43
+ });
44
+
45
+ exports.default = SelectValue;
46
+ exports.selectHorizontalValue = selectHorizontalValue;
47
+ exports.selectVerticalValue = selectVerticalValue;
48
+ //# sourceMappingURL=select-value.cjs.development.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"select-value.cjs.development.js","sources":["../src/index.ts"],"sourcesContent":["/**\n * initialized with horizontal props, then get correct offset/size value\n */\nimport {\n LayoutWithOffset,\n LayoutWithSize,\n SelectValueProps,\n _Dimensions,\n} from './types';\n\nclass SelectValue {\n readonly horizontal: boolean;\n\n constructor(props: SelectValueProps) {\n const { horizontal } = props;\n this.horizontal = horizontal;\n this.selectLength = this.selectLength.bind(this);\n this.selectOffset = this.selectOffset.bind(this);\n // this.selectAnimatedOffset = this.selectAnimatedOffset.bind(this);\n this.selectTranslate = this.selectTranslate.bind(this);\n this.revertLength = this.revertLength.bind(this);\n }\n\n selectOffset(layout: LayoutWithOffset) {\n return this.horizontal ? layout.x : layout.y;\n }\n\n setLength(layout: _Dimensions, length: number) {\n if (this.horizontal) layout.width = length;\n else layout.height = length;\n }\n\n selectLength(layout: LayoutWithSize) {\n return this.horizontal ? layout.width : layout.height;\n }\n\n // selectAnimatedOffset(layout: LayoutWithAnimatedOffset) {\n // return this.horizontal ? layout.x : layout.y;\n // }\n\n selectTranslate() {\n return this.horizontal ? 'translateX' : 'translateY';\n }\n\n revertLength(length: number) {\n return this.horizontal\n ? {\n width: length,\n height: null,\n }\n : {\n height: length,\n width: null,\n };\n }\n}\n\nexport const selectHorizontalValue = new SelectValue({ horizontal: true });\nexport const selectVerticalValue = new SelectValue({ horizontal: false });\n\nexport default SelectValue;\n"],"names":["SelectValue","props","horizontal","selectLength","bind","selectOffset","selectTranslate","revertLength","_proto","prototype","layout","x","y","setLength","length","width","height","selectHorizontalValue","selectVerticalValue"],"mappings":";;;;IAUMA,WAAW;EAGf,SAAAA,YAAYC,KAAuB;IACjC,IAAQC,UAAU,GAAKD,KAAK,CAApBC,UAAU;IAClB,IAAI,CAACA,UAAU,GAAGA,UAAU;IAC5B,IAAI,CAACC,YAAY,GAAG,IAAI,CAACA,YAAY,CAACC,IAAI,CAAC,IAAI,CAAC;IAChD,IAAI,CAACC,YAAY,GAAG,IAAI,CAACA,YAAY,CAACD,IAAI,CAAC,IAAI,CAAC;IAEhD,IAAI,CAACE,eAAe,GAAG,IAAI,CAACA,eAAe,CAACF,IAAI,CAAC,IAAI,CAAC;IACtD,IAAI,CAACG,YAAY,GAAG,IAAI,CAACA,YAAY,CAACH,IAAI,CAAC,IAAI,CAAC;;EACjD,IAAAI,MAAA,GAAAR,WAAA,CAAAS,SAAA;EAAAD,MAAA,CAEDH,YAAY,GAAZ,SAAAA,aAAaK,MAAwB;IACnC,OAAO,IAAI,CAACR,UAAU,GAAGQ,MAAM,CAACC,CAAC,GAAGD,MAAM,CAACE,CAAC;GAC7C;EAAAJ,MAAA,CAEDK,SAAS,GAAT,SAAAA,UAAUH,MAAmB,EAAEI,MAAc;IAC3C,IAAI,IAAI,CAACZ,UAAU,EAAEQ,MAAM,CAACK,KAAK,GAAGD,MAAM,CAAC,KACtCJ,MAAM,CAACM,MAAM,GAAGF,MAAM;GAC5B;EAAAN,MAAA,CAEDL,YAAY,GAAZ,SAAAA,aAAaO,MAAsB;IACjC,OAAO,IAAI,CAACR,UAAU,GAAGQ,MAAM,CAACK,KAAK,GAAGL,MAAM,CAACM,MAAM;GACtD;EAAAR,MAAA,CAMDF,eAAe,GAAf,SAAAA;IACE,OAAO,IAAI,CAACJ,UAAU,GAAG,YAAY,GAAG,YAAY;GACrD;EAAAM,MAAA,CAEDD,YAAY,GAAZ,SAAAA,aAAaO,MAAc;IACzB,OAAO,IAAI,CAACZ,UAAU,GAClB;MACEa,KAAK,EAAED,MAAM;MACbE,MAAM,EAAE;KACT,GACD;MACEA,MAAM,EAAEF,MAAM;MACdC,KAAK,EAAE;KACR;GACN;EAAA,OAAAf,WAAA;AAAA;IAGUiB,qBAAqB,gBAAG,IAAIjB,WAAW,CAAC;EAAEE,UAAU,EAAE;CAAM;IAC5DgB,mBAAmB,gBAAG,IAAIlB,WAAW,CAAC;EAAEE,UAAU,EAAE;CAAO;;;;;;"}
@@ -0,0 +1,2 @@
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var t=function(){function t(t){this.horizontal=t.horizontal,this.selectLength=this.selectLength.bind(this),this.selectOffset=this.selectOffset.bind(this),this.selectTranslate=this.selectTranslate.bind(this),this.revertLength=this.revertLength.bind(this)}var e=t.prototype;return e.selectOffset=function(t){return this.horizontal?t.x:t.y},e.setLength=function(t,e){this.horizontal?t.width=e:t.height=e},e.selectLength=function(t){return this.horizontal?t.width:t.height},e.selectTranslate=function(){return this.horizontal?"translateX":"translateY"},e.revertLength=function(t){return this.horizontal?{width:t,height:null}:{height:t,width:null}},t}(),e=new t({horizontal:!0}),i=new t({horizontal:!1});exports.default=t,exports.selectHorizontalValue=e,exports.selectVerticalValue=i;
2
+ //# sourceMappingURL=select-value.cjs.production.min.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"select-value.cjs.production.min.js","sources":["../src/index.ts"],"sourcesContent":["/**\n * initialized with horizontal props, then get correct offset/size value\n */\nimport {\n LayoutWithOffset,\n LayoutWithSize,\n SelectValueProps,\n _Dimensions,\n} from './types';\n\nclass SelectValue {\n readonly horizontal: boolean;\n\n constructor(props: SelectValueProps) {\n const { horizontal } = props;\n this.horizontal = horizontal;\n this.selectLength = this.selectLength.bind(this);\n this.selectOffset = this.selectOffset.bind(this);\n // this.selectAnimatedOffset = this.selectAnimatedOffset.bind(this);\n this.selectTranslate = this.selectTranslate.bind(this);\n this.revertLength = this.revertLength.bind(this);\n }\n\n selectOffset(layout: LayoutWithOffset) {\n return this.horizontal ? layout.x : layout.y;\n }\n\n setLength(layout: _Dimensions, length: number) {\n if (this.horizontal) layout.width = length;\n else layout.height = length;\n }\n\n selectLength(layout: LayoutWithSize) {\n return this.horizontal ? layout.width : layout.height;\n }\n\n // selectAnimatedOffset(layout: LayoutWithAnimatedOffset) {\n // return this.horizontal ? layout.x : layout.y;\n // }\n\n selectTranslate() {\n return this.horizontal ? 'translateX' : 'translateY';\n }\n\n revertLength(length: number) {\n return this.horizontal\n ? {\n width: length,\n height: null,\n }\n : {\n height: length,\n width: null,\n };\n }\n}\n\nexport const selectHorizontalValue = new SelectValue({ horizontal: true });\nexport const selectVerticalValue = new SelectValue({ horizontal: false });\n\nexport default SelectValue;\n"],"names":["SelectValue","props","this","horizontal","selectLength","bind","selectOffset","selectTranslate","revertLength","_proto","prototype","layout","x","y","setLength","length","width","height","selectHorizontalValue","selectVerticalValue"],"mappings":"wEAUMA,aAGJ,SAAAA,EAAYC,GAEVC,KAAKC,WADkBF,EAAfE,WAERD,KAAKE,aAAeF,KAAKE,aAAaC,KAAKH,MAC3CA,KAAKI,aAAeJ,KAAKI,aAAaD,KAAKH,MAE3CA,KAAKK,gBAAkBL,KAAKK,gBAAgBF,KAAKH,MACjDA,KAAKM,aAAeN,KAAKM,aAAaH,KAAKH,MAC5C,IAAAO,EAAAT,EAAAU,UAiCA,OAjCAD,EAEDH,aAAA,SAAaK,GACX,OAAOT,KAAKC,WAAaQ,EAAOC,EAAID,EAAOE,GAC5CJ,EAEDK,UAAA,SAAUH,EAAqBI,GACzBb,KAAKC,WAAYQ,EAAOK,MAAQD,EAC/BJ,EAAOM,OAASF,GACtBN,EAEDL,aAAA,SAAaO,GACX,OAAOT,KAAKC,WAAaQ,EAAOK,MAAQL,EAAOM,QAChDR,EAMDF,gBAAA,WACE,OAAOL,KAAKC,WAAa,aAAe,cACzCM,EAEDD,aAAA,SAAaO,GACX,OAAOb,KAAKC,WACR,CACEa,MAAOD,EACPE,OAAQ,MAEV,CACEA,OAAQF,EACRC,MAAO,OAEdhB,KAGUkB,EAAwB,IAAIlB,EAAY,CAAEG,YAAY,IACtDgB,EAAsB,IAAInB,EAAY,CAAEG,YAAY"}
@@ -0,0 +1,43 @@
1
+ var SelectValue = /*#__PURE__*/function () {
2
+ function SelectValue(props) {
3
+ var horizontal = props.horizontal;
4
+ this.horizontal = horizontal;
5
+ this.selectLength = this.selectLength.bind(this);
6
+ this.selectOffset = this.selectOffset.bind(this);
7
+ this.selectTranslate = this.selectTranslate.bind(this);
8
+ this.revertLength = this.revertLength.bind(this);
9
+ }
10
+ var _proto = SelectValue.prototype;
11
+ _proto.selectOffset = function selectOffset(layout) {
12
+ return this.horizontal ? layout.x : layout.y;
13
+ };
14
+ _proto.setLength = function setLength(layout, length) {
15
+ if (this.horizontal) layout.width = length;else layout.height = length;
16
+ };
17
+ _proto.selectLength = function selectLength(layout) {
18
+ return this.horizontal ? layout.width : layout.height;
19
+ };
20
+ _proto.selectTranslate = function selectTranslate() {
21
+ return this.horizontal ? 'translateX' : 'translateY';
22
+ };
23
+ _proto.revertLength = function revertLength(length) {
24
+ return this.horizontal ? {
25
+ width: length,
26
+ height: null
27
+ } : {
28
+ height: length,
29
+ width: null
30
+ };
31
+ };
32
+ return SelectValue;
33
+ }();
34
+ var selectHorizontalValue = /*#__PURE__*/new SelectValue({
35
+ horizontal: true
36
+ });
37
+ var selectVerticalValue = /*#__PURE__*/new SelectValue({
38
+ horizontal: false
39
+ });
40
+
41
+ export default SelectValue;
42
+ export { selectHorizontalValue, selectVerticalValue };
43
+ //# sourceMappingURL=select-value.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"select-value.esm.js","sources":["../src/index.ts"],"sourcesContent":["/**\n * initialized with horizontal props, then get correct offset/size value\n */\nimport {\n LayoutWithOffset,\n LayoutWithSize,\n SelectValueProps,\n _Dimensions,\n} from './types';\n\nclass SelectValue {\n readonly horizontal: boolean;\n\n constructor(props: SelectValueProps) {\n const { horizontal } = props;\n this.horizontal = horizontal;\n this.selectLength = this.selectLength.bind(this);\n this.selectOffset = this.selectOffset.bind(this);\n // this.selectAnimatedOffset = this.selectAnimatedOffset.bind(this);\n this.selectTranslate = this.selectTranslate.bind(this);\n this.revertLength = this.revertLength.bind(this);\n }\n\n selectOffset(layout: LayoutWithOffset) {\n return this.horizontal ? layout.x : layout.y;\n }\n\n setLength(layout: _Dimensions, length: number) {\n if (this.horizontal) layout.width = length;\n else layout.height = length;\n }\n\n selectLength(layout: LayoutWithSize) {\n return this.horizontal ? layout.width : layout.height;\n }\n\n // selectAnimatedOffset(layout: LayoutWithAnimatedOffset) {\n // return this.horizontal ? layout.x : layout.y;\n // }\n\n selectTranslate() {\n return this.horizontal ? 'translateX' : 'translateY';\n }\n\n revertLength(length: number) {\n return this.horizontal\n ? {\n width: length,\n height: null,\n }\n : {\n height: length,\n width: null,\n };\n }\n}\n\nexport const selectHorizontalValue = new SelectValue({ horizontal: true });\nexport const selectVerticalValue = new SelectValue({ horizontal: false });\n\nexport default SelectValue;\n"],"names":["SelectValue","props","horizontal","selectLength","bind","selectOffset","selectTranslate","revertLength","_proto","prototype","layout","x","y","setLength","length","width","height","selectHorizontalValue","selectVerticalValue"],"mappings":"IAUMA,WAAW;EAGf,SAAAA,YAAYC,KAAuB;IACjC,IAAQC,UAAU,GAAKD,KAAK,CAApBC,UAAU;IAClB,IAAI,CAACA,UAAU,GAAGA,UAAU;IAC5B,IAAI,CAACC,YAAY,GAAG,IAAI,CAACA,YAAY,CAACC,IAAI,CAAC,IAAI,CAAC;IAChD,IAAI,CAACC,YAAY,GAAG,IAAI,CAACA,YAAY,CAACD,IAAI,CAAC,IAAI,CAAC;IAEhD,IAAI,CAACE,eAAe,GAAG,IAAI,CAACA,eAAe,CAACF,IAAI,CAAC,IAAI,CAAC;IACtD,IAAI,CAACG,YAAY,GAAG,IAAI,CAACA,YAAY,CAACH,IAAI,CAAC,IAAI,CAAC;;EACjD,IAAAI,MAAA,GAAAR,WAAA,CAAAS,SAAA;EAAAD,MAAA,CAEDH,YAAY,GAAZ,SAAAA,aAAaK,MAAwB;IACnC,OAAO,IAAI,CAACR,UAAU,GAAGQ,MAAM,CAACC,CAAC,GAAGD,MAAM,CAACE,CAAC;GAC7C;EAAAJ,MAAA,CAEDK,SAAS,GAAT,SAAAA,UAAUH,MAAmB,EAAEI,MAAc;IAC3C,IAAI,IAAI,CAACZ,UAAU,EAAEQ,MAAM,CAACK,KAAK,GAAGD,MAAM,CAAC,KACtCJ,MAAM,CAACM,MAAM,GAAGF,MAAM;GAC5B;EAAAN,MAAA,CAEDL,YAAY,GAAZ,SAAAA,aAAaO,MAAsB;IACjC,OAAO,IAAI,CAACR,UAAU,GAAGQ,MAAM,CAACK,KAAK,GAAGL,MAAM,CAACM,MAAM;GACtD;EAAAR,MAAA,CAMDF,eAAe,GAAf,SAAAA;IACE,OAAO,IAAI,CAACJ,UAAU,GAAG,YAAY,GAAG,YAAY;GACrD;EAAAM,MAAA,CAEDD,YAAY,GAAZ,SAAAA,aAAaO,MAAc;IACzB,OAAO,IAAI,CAACZ,UAAU,GAClB;MACEa,KAAK,EAAED,MAAM;MACbE,MAAM,EAAE;KACT,GACD;MACEA,MAAM,EAAEF,MAAM;MACdC,KAAK,EAAE;KACR;GACN;EAAA,OAAAf,WAAA;AAAA;IAGUiB,qBAAqB,gBAAG,IAAIjB,WAAW,CAAC;EAAEE,UAAU,EAAE;CAAM;IAC5DgB,mBAAmB,gBAAG,IAAIlB,WAAW,CAAC;EAAEE,UAAU,EAAE;CAAO;;;;;"}
@@ -1,17 +1,17 @@
1
- export declare type LayoutWithSize = {
2
- width?: number;
3
- height?: number;
4
- };
5
- export declare type LayoutWithOffset = {
6
- x: number;
7
- y: number;
8
- };
9
- export declare type SelectValueProps = {
10
- horizontal: boolean;
11
- };
12
- export declare type _Dimensions = {
13
- x: number;
14
- y: number;
15
- width: number;
16
- height: number;
17
- };
1
+ export declare type LayoutWithSize = {
2
+ width?: number;
3
+ height?: number;
4
+ };
5
+ export declare type LayoutWithOffset = {
6
+ x: number;
7
+ y: number;
8
+ };
9
+ export declare type SelectValueProps = {
10
+ horizontal: boolean;
11
+ };
12
+ export declare type _Dimensions = {
13
+ x: number;
14
+ y: number;
15
+ width: number;
16
+ height: number;
17
+ };
package/package.json CHANGED
@@ -1,12 +1,17 @@
1
1
  {
2
2
  "name": "@x-oasis/select-value",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "select value function",
5
- "main": "index.ts",
5
+ "main": "dist/index.js",
6
+ "typings": "dist/index.d.ts",
7
+ "module": "dist/select-value.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,40 +0,0 @@
1
- class SelectValue {
2
- horizontal;
3
- constructor(props) {
4
- const { horizontal } = props;
5
- this.horizontal = horizontal;
6
- this.selectLength = this.selectLength.bind(this);
7
- this.selectOffset = this.selectOffset.bind(this);
8
- this.selectTranslate = this.selectTranslate.bind(this);
9
- this.revertLength = this.revertLength.bind(this);
10
- }
11
- selectOffset(layout) {
12
- return this.horizontal ? layout.x : layout.y;
13
- }
14
- setLength(layout, length) {
15
- if (this.horizontal)
16
- layout.width = length;
17
- else
18
- layout.height = length;
19
- }
20
- selectLength(layout) {
21
- return this.horizontal ? layout.width : layout.height;
22
- }
23
- selectTranslate() {
24
- return this.horizontal ? 'translateX' : 'translateY';
25
- }
26
- revertLength(length) {
27
- return this.horizontal
28
- ? {
29
- width: length,
30
- height: null,
31
- }
32
- : {
33
- height: length,
34
- width: null,
35
- };
36
- }
37
- }
38
- export const selectHorizontalValue = new SelectValue({ horizontal: true });
39
- export const selectVerticalValue = new SelectValue({ horizontal: false });
40
- export default SelectValue;
package/dist/src/types.js DELETED
@@ -1 +0,0 @@
1
- export {};
@@ -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/types.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":"a2193ca4862b6f5216257b11eef1d418b50fb852add4686d38e5bdeecfb2fe57","signature":"618af189aa2d5b57020e4d749bea6dabb2b2d74426e268df9a105b24ac691ecd"},{"version":"c60c6e5bed6b5e3335b376a90e8edb4d2a6c6221f80a86e7448ed278f90a2ea0","signature":"80e05065c93abb3f03cfee728f861ea545fb42194ed96171ef3d294f411e09fe"},"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":[[57,101],[60,101],[61,66,92,101],[62,72,73,80,89,100,101],[62,63,72,80,101],[64,101],[65,66,73,81,101],[66,89,97,101],[67,69,72,80,101],[68,101],[69,70,101],[71,72,101],[72,101],[72,73,74,89,100,101],[72,73,74,89,101],[101],[75,80,89,100,101],[72,73,75,76,80,89,97,100,101],[75,77,89,97,100,101],[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,107],[72,78,101],[79,100,101],[69,72,80,89,101],[81,101],[82,101],[60,83,101],[84,99,101,105],[85,101],[86,101],[72,87,101],[87,88,101,103],[61,72,89,90,91,101],[61,89,91,101],[89,90,101],[92,101],[93,101],[72,95,96,101],[95,96,101],[66,80,97,101],[98,101],[80,99,101],[61,75,86,100,101],[66,101],[89,101,102],[101,103],[101,104],[61,66,72,74,83,89,100,101,103,105],[89,101,106],[55,101],[55]],"referencedMap":[[57,1],[58,1],[60,2],[61,3],[62,4],[63,5],[64,6],[65,7],[66,8],[67,9],[68,10],[69,11],[70,11],[71,12],[72,13],[73,14],[74,15],[59,16],[107,16],[75,17],[76,18],[77,19],[108,20],[78,21],[79,22],[80,23],[81,24],[82,25],[83,26],[84,27],[85,28],[86,29],[87,30],[88,31],[89,32],[91,33],[90,34],[92,35],[93,36],[94,16],[95,37],[96,38],[97,39],[98,40],[99,41],[100,42],[101,43],[102,44],[103,45],[104,46],[105,47],[106,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],[56,49],[55,16]],"exportedModulesMap":[[57,1],[58,1],[60,2],[61,3],[62,4],[63,5],[64,6],[65,7],[66,8],[67,9],[68,10],[69,11],[70,11],[71,12],[72,13],[73,14],[74,15],[59,16],[107,16],[75,17],[76,18],[77,19],[108,20],[78,21],[79,22],[80,23],[81,24],[82,25],[83,26],[84,27],[85,28],[86,29],[87,30],[88,31],[89,32],[91,33],[90,34],[92,35],[93,36],[94,16],[95,37],[96,38],[97,39],[98,40],[99,41],[100,42],[101,43],[102,44],[103,45],[104,46],[105,47],[106,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],[56,50]],"semanticDiagnosticsPerFile":[57,58,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,59,107,75,76,77,108,78,79,80,81,82,83,84,85,86,87,88,89,91,90,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,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,56,55],"latestChangedDtsFile":"./src/index.d.ts"},"version":"4.8.3"}