@interactors/core 1.0.0-effection.2 → 1.0.0-interactive-stories-v2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/interaction.js +18 -3
- package/dist/cjs/interaction.js.map +1 -1
- package/dist/esm/interaction.js +18 -3
- package/dist/esm/interaction.js.map +1 -1
- package/dist/interaction.d.ts +7 -21
- package/dist/interaction.d.ts.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/interaction.ts +23 -25
package/dist/cjs/interaction.js
CHANGED
|
@@ -12,6 +12,7 @@ function isInteraction(x) {
|
|
|
12
12
|
exports.isInteraction = isInteraction;
|
|
13
13
|
function createInteraction(type, options, apply) {
|
|
14
14
|
let task;
|
|
15
|
+
let shouldCatchHalt = false;
|
|
15
16
|
function operation(scope) {
|
|
16
17
|
let run = () => options.run(options.interactor);
|
|
17
18
|
return (globals_1.globals.wrapInteraction
|
|
@@ -26,6 +27,17 @@ function createInteraction(type, options, apply) {
|
|
|
26
27
|
return task;
|
|
27
28
|
}
|
|
28
29
|
;
|
|
30
|
+
function catchHalt(onReject) {
|
|
31
|
+
return (reason) => {
|
|
32
|
+
if (shouldCatchHalt && reason instanceof Error && reason.message == 'halted') {
|
|
33
|
+
return reason;
|
|
34
|
+
}
|
|
35
|
+
else {
|
|
36
|
+
onReject === null || onReject === void 0 ? void 0 : onReject(reason);
|
|
37
|
+
return reason;
|
|
38
|
+
}
|
|
39
|
+
};
|
|
40
|
+
}
|
|
29
41
|
let serializedOptions = serialize_1.serializeInteractionOptions(type, options);
|
|
30
42
|
let interaction = {
|
|
31
43
|
type,
|
|
@@ -36,15 +48,18 @@ function createInteraction(type, options, apply) {
|
|
|
36
48
|
action,
|
|
37
49
|
check: type === 'assertion' ? action : undefined,
|
|
38
50
|
code: () => serializedOptions.code(),
|
|
39
|
-
halt: () =>
|
|
51
|
+
halt: () => {
|
|
52
|
+
shouldCatchHalt = true;
|
|
53
|
+
return action().halt();
|
|
54
|
+
},
|
|
40
55
|
[interactionSymbol]: true,
|
|
41
56
|
[core_1.Symbol.toStringTag]: `[interaction ${options.description}]`,
|
|
42
57
|
[core_1.Symbol.operation]: operation,
|
|
43
58
|
then(onFulfill, onReject) {
|
|
44
|
-
return action().then(onFulfill, onReject);
|
|
59
|
+
return action().then(onFulfill, catchHalt(onReject));
|
|
45
60
|
},
|
|
46
61
|
catch(onReject) {
|
|
47
|
-
return action().catch(onReject);
|
|
62
|
+
return action().catch(catchHalt(onReject));
|
|
48
63
|
},
|
|
49
64
|
finally(handler) {
|
|
50
65
|
return action().finally(handler);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"interaction.js","sourceRoot":"","sources":["../../src/interaction.ts"],"names":[],"mappings":";;;AAAA,uDAAuD;AACvD,0CAA+D;AAC/D,
|
|
1
|
+
{"version":3,"file":"interaction.js","sourceRoot":"","sources":["../../src/interaction.ts"],"names":[],"mappings":"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"}
|
package/dist/esm/interaction.js
CHANGED
|
@@ -8,6 +8,7 @@ export function isInteraction(x) {
|
|
|
8
8
|
}
|
|
9
9
|
export function createInteraction(type, options, apply) {
|
|
10
10
|
let task;
|
|
11
|
+
let shouldCatchHalt = false;
|
|
11
12
|
function operation(scope) {
|
|
12
13
|
let run = () => options.run(options.interactor);
|
|
13
14
|
return (globals.wrapInteraction
|
|
@@ -22,6 +23,17 @@ export function createInteraction(type, options, apply) {
|
|
|
22
23
|
return task;
|
|
23
24
|
}
|
|
24
25
|
;
|
|
26
|
+
function catchHalt(onReject) {
|
|
27
|
+
return (reason) => {
|
|
28
|
+
if (shouldCatchHalt && reason instanceof Error && reason.message == 'halted') {
|
|
29
|
+
return reason;
|
|
30
|
+
}
|
|
31
|
+
else {
|
|
32
|
+
onReject === null || onReject === void 0 ? void 0 : onReject(reason);
|
|
33
|
+
return reason;
|
|
34
|
+
}
|
|
35
|
+
};
|
|
36
|
+
}
|
|
25
37
|
let serializedOptions = serializeInteractionOptions(type, options);
|
|
26
38
|
let interaction = {
|
|
27
39
|
type,
|
|
@@ -32,15 +44,18 @@ export function createInteraction(type, options, apply) {
|
|
|
32
44
|
action,
|
|
33
45
|
check: type === 'assertion' ? action : undefined,
|
|
34
46
|
code: () => serializedOptions.code(),
|
|
35
|
-
halt: () =>
|
|
47
|
+
halt: () => {
|
|
48
|
+
shouldCatchHalt = true;
|
|
49
|
+
return action().halt();
|
|
50
|
+
},
|
|
36
51
|
[interactionSymbol]: true,
|
|
37
52
|
[Symbol.toStringTag]: `[interaction ${options.description}]`,
|
|
38
53
|
[Symbol.operation]: operation,
|
|
39
54
|
then(onFulfill, onReject) {
|
|
40
|
-
return action().then(onFulfill, onReject);
|
|
55
|
+
return action().then(onFulfill, catchHalt(onReject));
|
|
41
56
|
},
|
|
42
57
|
catch(onReject) {
|
|
43
|
-
return action().catch(onReject);
|
|
58
|
+
return action().catch(catchHalt(onReject));
|
|
44
59
|
},
|
|
45
60
|
finally(handler) {
|
|
46
61
|
return action().finally(handler);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"interaction.js","sourceRoot":"","sources":["../../src/interaction.ts"],"names":[],"mappings":"AAAA,uDAAuD;AACvD,OAAO,EAAmB,GAAG,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAC/D,OAAO,
|
|
1
|
+
{"version":3,"file":"interaction.js","sourceRoot":"","sources":["../../src/interaction.ts"],"names":[],"mappings":"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"}
|
package/dist/interaction.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Operation, Task } from '@effection/core';
|
|
2
|
-
import {
|
|
2
|
+
import { CommonInteraction } from '@interactors/globals';
|
|
3
3
|
import type { Interactor, FilterObject, FilterFn, FilterParams } from './specification';
|
|
4
4
|
declare const interactionSymbol: unique symbol;
|
|
5
5
|
export declare function isInteraction(x: unknown): x is Interaction<Element, unknown>;
|
|
@@ -14,46 +14,32 @@ export declare function isInteraction(x: unknown): x is Interaction<Element, unk
|
|
|
14
14
|
*
|
|
15
15
|
* @typeParam T the return value of the promise that this interaction evaluates to.
|
|
16
16
|
*/
|
|
17
|
-
export
|
|
18
|
-
type: InteractionType;
|
|
17
|
+
export declare type Interaction<E extends Element, T = void> = CommonInteraction<T> & {
|
|
19
18
|
interactor: Interactor<E, any>;
|
|
20
19
|
run: (interactor: Interactor<E, any>) => Operation<T>;
|
|
21
|
-
/**
|
|
22
|
-
* Return a description of the interaction
|
|
23
|
-
*/
|
|
24
|
-
description: string;
|
|
25
|
-
/**
|
|
26
|
-
* Return a code representation of the interaction
|
|
27
|
-
*/
|
|
28
|
-
code: () => string;
|
|
29
|
-
/**
|
|
30
|
-
* Return a serialized options of the interaction
|
|
31
|
-
*/
|
|
32
|
-
options: SerializedInteractionOptions;
|
|
33
20
|
/**
|
|
34
21
|
* Perform the interaction
|
|
35
22
|
*/
|
|
36
23
|
action: () => Task<T>;
|
|
37
24
|
check?: () => Task<T>;
|
|
38
|
-
halt: () => Promise<void>;
|
|
39
25
|
[interactionSymbol]: true;
|
|
40
|
-
}
|
|
41
|
-
export
|
|
26
|
+
};
|
|
27
|
+
export declare type ActionInteraction<E extends Element, T = void> = Interaction<E, T> & {
|
|
42
28
|
type: "action";
|
|
43
29
|
check: undefined;
|
|
44
|
-
}
|
|
30
|
+
};
|
|
45
31
|
/**
|
|
46
32
|
* Like {@link Interaction}, except that it is used for assertions only.
|
|
47
33
|
*
|
|
48
34
|
* @typeParam T the return value of the promise that this interaction evaluates to.
|
|
49
35
|
*/
|
|
50
|
-
export
|
|
36
|
+
export declare type AssertionInteraction<E extends Element, T = void> = Interaction<E, T> & {
|
|
51
37
|
type: "assertion";
|
|
52
38
|
/**
|
|
53
39
|
* Perform the check
|
|
54
40
|
*/
|
|
55
41
|
check: () => Task<T>;
|
|
56
|
-
}
|
|
42
|
+
};
|
|
57
43
|
export declare type InteractionOptions<E extends Element, T> = {
|
|
58
44
|
name: string;
|
|
59
45
|
description: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"interaction.d.ts","sourceRoot":"","sources":["../src/interaction.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,IAAI,EAAe,MAAM,iBAAiB,CAAC;AAC/D,OAAO,
|
|
1
|
+
{"version":3,"file":"interaction.d.ts","sourceRoot":"","sources":["../src/interaction.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +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.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.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.es2019.full.d.ts","../../../node_modules/@types/node/assert.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/dns.d.ts","../../../node_modules/@types/node/domain.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/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/timers.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","../node_modules/@effection/core/dist-esm/state-machine.d.ts","../node_modules/@effection/core/dist-esm/labels.d.ts","../node_modules/@effection/core/dist-esm/run-loop.d.ts","../node_modules/@effection/core/dist-esm/future.d.ts","../node_modules/@effection/core/dist-esm/task.d.ts","../node_modules/@effection/core/dist-esm/symbol.d.ts","../node_modules/@effection/core/dist-esm/operation.d.ts","../node_modules/@effection/core/dist-esm/effection.d.ts","../node_modules/@effection/core/dist-esm/deprecated.d.ts","../node_modules/@effection/core/dist-esm/error.d.ts","../../../node_modules/event-target-shim/index.d.ts","../../../node_modules/abort-controller/dist/abort-controller.d.ts","../node_modules/@effection/core/dist-esm/abort-signal.d.ts","../node_modules/@effection/core/dist-esm/operations/sleep.d.ts","../node_modules/@effection/core/dist-esm/operations/ensure.d.ts","../node_modules/@effection/core/dist-esm/operations/timeout.d.ts","../node_modules/@effection/core/dist-esm/operations/with-timeout.d.ts","../node_modules/@effection/core/dist-esm/operations/spawn.d.ts","../node_modules/@effection/core/dist-esm/operations/race.d.ts","../node_modules/@effection/core/dist-esm/operations/all.d.ts","../node_modules/@effection/core/dist-esm/operations/label.d.ts","../node_modules/@effection/core/dist-esm/index.d.ts","../../../node_modules/performance-api/index.d.ts","../../globals/node_modules/@effection/core/dist-esm/index.d.ts","../../globals/dist/keyboard-layout.d.ts","../../globals/dist/globals.d.ts","../../globals/dist/index.d.ts","../src/converge.ts","../src/merge-objects.ts","../../../node_modules/no-case/dist/index.d.ts","../../../node_modules/pascal-case/dist/index.d.ts","../../../node_modules/camel-case/dist/index.d.ts","../../../node_modules/capital-case/dist/index.d.ts","../../../node_modules/constant-case/dist/index.d.ts","../../../node_modules/dot-case/dist/index.d.ts","../../../node_modules/header-case/dist/index.d.ts","../../../node_modules/param-case/dist/index.d.ts","../../../node_modules/path-case/dist/index.d.ts","../../../node_modules/sentence-case/dist/index.d.ts","../../../node_modules/snake-case/dist/index.d.ts","../../../node_modules/change-case/dist/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/lodash.isequal/index.d.ts","../src/matcher.ts","../src/filter-set.ts","../src/escape-html.ts","../src/match.ts","../src/locator.ts","../src/serialize.ts","../src/interaction.ts","../src/specification.ts","../src/format.ts","../src/errors.ts","../src/matchers/matching.ts","../src/resolvers.ts","../src/constructor.ts","../src/create-interactor.ts","../src/inspector.ts","../../../node_modules/element-is-visible/dist/types/index.d.ts","../src/matchers/including.ts","../src/matchers/and.ts","../src/matchers/or.ts","../src/matchers/not.ts","../src/matchers/some.ts","../src/matchers/every.ts","../../../node_modules/@testing-library/user-event/dist/click.d.ts","../../../node_modules/@testing-library/user-event/dist/type/typeImplementation.d.ts","../../../node_modules/@testing-library/user-event/dist/type/index.d.ts","../../../node_modules/@testing-library/user-event/dist/clear.d.ts","../../../node_modules/@testing-library/user-event/dist/tab.d.ts","../../../node_modules/@testing-library/user-event/dist/hover.d.ts","../../../node_modules/@testing-library/user-event/dist/upload.d.ts","../../../node_modules/@testing-library/user-event/dist/paste.d.ts","../../../node_modules/@testing-library/user-event/dist/keyboard/types.d.ts","../../../node_modules/@testing-library/user-event/dist/keyboard/specialCharMap.d.ts","../../../node_modules/@testing-library/user-event/dist/keyboard/index.d.ts","../../../node_modules/@testing-library/user-event/dist/index.d.ts","../src/element/click.ts","../src/index.ts","../../../node_modules/@types/aria-query/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/braces/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/color-name/index.d.ts","../../../node_modules/@types/color-convert/conversions.d.ts","../../../node_modules/@types/color-convert/route.d.ts","../../../node_modules/@types/color-convert/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/lib/rules/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/express-ws/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/is-function/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/ts4.0/index.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/micromatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/npmlog/index.d.ts","../../../node_modules/@types/overlayscrollbars/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parsimmon/index.d.ts","../../../node_modules/@types/pretty-hrtime/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/q/index.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/@types/react/node_modules/csstype/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/reach__router/index.d.ts","../../../node_modules/@types/react-syntax-highlighter/index.d.ts","../../../node_modules/@types/react-transition-group/Transition.d.ts","../../../node_modules/@types/react-transition-group/CSSTransition.d.ts","../../../node_modules/@types/react-transition-group/TransitionGroup.d.ts","../../../node_modules/@types/react-transition-group/SwitchTransition.d.ts","../../../node_modules/@types/react-transition-group/config.d.ts","../../../node_modules/@types/react-transition-group/index.d.ts","../../../node_modules/@types/resolve/index.d.ts","../../../node_modules/@types/scheduler/index.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sizzle/index.d.ts","../../../node_modules/@types/source-list-map/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/styled-jsx/css.d.ts","../../../node_modules/@types/styled-jsx/server.d.ts","../../../node_modules/@types/styled-jsx/index.d.ts","../../../node_modules/@types/tapable/index.d.ts","../../../node_modules/source-map/source-map.d.ts","../../../node_modules/@types/uglify-js/index.d.ts","../../../node_modules/anymatch/index.d.ts","../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../../node_modules/@types/webpack-sources/lib/Source.d.ts","../../../node_modules/@types/webpack-sources/lib/CompatSource.d.ts","../../../node_modules/@types/webpack-sources/lib/ConcatSource.d.ts","../../../node_modules/@types/webpack-sources/lib/OriginalSource.d.ts","../../../node_modules/@types/webpack-sources/lib/PrefixSource.d.ts","../../../node_modules/@types/webpack-sources/lib/RawSource.d.ts","../../../node_modules/@types/webpack-sources/lib/ReplaceSource.d.ts","../../../node_modules/@types/webpack-sources/lib/SizeOnlySource.d.ts","../../../node_modules/@types/webpack-sources/lib/SourceMapSource.d.ts","../../../node_modules/@types/webpack-sources/lib/index.d.ts","../../../node_modules/@types/webpack-sources/lib/CachedSource.d.ts","../../../node_modules/@types/webpack-sources/index.d.ts","../../../node_modules/@types/webpack/index.d.ts","../../../node_modules/@types/webpack-env/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts","../../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"ac3a8c4040e183ce38da69d23b96939112457d1936198e6542672b7963cf0fce","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",{"version":"1dad4fe1561d99dfd6709127608b99a76e5c2643626c800434f99c48038567ee","affectsGlobalScope":true},{"version":"a8fe23ae87c3e9d2877032cafeb290f2ebe0c51e216d175a0408b10915ebe9f0","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"cce43d02223f8049864f8568bed322c39424013275cd3bcc3f51492d8b546cb3","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"8dff1b4c2df638fcd976cbb0e636f23ab5968e836cd45084cc31d47d1ab19c49","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"8f4c9f651c8294a2eb1cbd12581fe25bfb901ab1d474bb93cd38c7e2f4be7a30","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"60761e6ea886034af0f294f025a7199360ce4e2c8ba4ec6408bc049cf9b89799","affectsGlobalScope":true},{"version":"506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f","d555cd63a3fc837840db192596273fdf52fb28092b0a33bec98e89a0334b3a4c",{"version":"3e432cdf56538889e5742d388cdf03d670bfb17f4547dbbb1daf90701ec790d5","affectsGlobalScope":true},"85d545d430795d54a8b2896f67f9aeb7bf19fd74a1469ae0627311eb72f0dfa2","a473cf45c3d9809518f8af913312139d9f4db6887dc554e0d06d0f4e52722e6b","10b3076ac94d93d107062c0874fcc02305d8b915961cf848df17778535774f39","3d68ecf05475492f041c88395372c3a01b30351619bebcd38287ab185be7f7e4",{"version":"36c956a3a6dc279f1e6b77aa4b97b7b229b7d828102573ef5002de456ff5e1d9","affectsGlobalScope":true},"45ac321f2e15d268fd74a90ddaa6467dcaaff2c5b13f95b4b85831520fb7a491","6e8b894365ab993dbb55c58542598d1548fdda072c974f98b89c218891e2ba09","ddd6169dff8e5263397a9399ba7ba92521d3959f8f9dcdc27f24403dc7b751ba","508e1e25ca40ea6cde332d3232c826fcd82f456f45ae535d817754684f048f9e",{"version":"2866a528b2708aa272ec3eaafd3c980abb23aec1ef831cfc5eb2186b98c37ce5","affectsGlobalScope":true},{"version":"8f8f6ee2a0c94077f79439f51640a625ac7e2f5dd6866bd3b5a41705c836adfc","affectsGlobalScope":true},"ee97aed5b4667a5c3003a1da4b108827fc64b888391417617d89b02ff134de9a","839421b494b57cd2bc0074e914130277051850eba6def6c25870056e6652640b","e18a4b529c9a05593e612130554d93a2b78b949cf1cf48c0b183071258f0e95a","88587b5c94b0c4f5d78026e4beeb93383b3933c860d9840b55d6bf47d7b632bb","a473ecd14d9bafbd6a33105524b033237bbf1d6ce2cd81eb71cc54bec2d83d55","9e8947666e44137405fd378f3a8a0515a492e967e552406c02b991c98c78fc61","0cff7901aedfe78e314f7d44088f07e2afa1b6e4f0473a4169b8456ca2fb245d","7a2a3ff87ffd4313a6a2f3b012e801dd249ee58152cedf90c8718dcd2c811fe3","69640cc2e76dad52daeb9914e6b70c5c9a5591a3a65190a2d3ea432cf0015e16","a39a4c527b7a2dc7a2661b711a534c10c76852c5ad6ae320767d3f7d2621b67d","1bb5c9857b2ee32c199dd85bc0f4c0299112485d6e5dc91428eabfdee0dbd68c",{"version":"5daba568741c8ed283d67bf370c626a91e09fdfbc6d4abe22a7f93e2cf5138b9","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","662661bbf9ccd869f3bca82d34234b2abdc95c657e2187c35352d42dddb24c2d","5caa645cc390a0a8d5a031072b6b4e49218c17017cd80a63bd2557b19be13c5f","4c4334eb5d8fae83416a361d787b55a5743916aed8af812a909898bc7333e709","6feb6f75a3e4e017f8e6e12740cf06f18eefcf829284fa310da6c7f4d44fb2eb","4fd3c4debadce3e9ab9dec3eb45f7f5e2e3d4ad65cf975a6d938d883cfb25a50","0953427f9c2498f71dd912fdd8a81b19cf6925de3e1ad67ab9a77b9a0f79bf0b","b709ff1f6d6235f5e9c8dcbce3e683ff24ec35046b232d5a281af083026018d1","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","40c6ed5dc58e1c6afa7dcd23b1697bf290cc5b1170c63d0a4dd12f52aa39291c","71d6da3b0150ecdcd16c08b3b546fe4cc7f53df642eccfeb03c813ee788fae0c","a364b4a8a015ae377052fa4fac94204d79a69d879567f444c7ceff1b7a18482d","c5ec3b97d9db756c689cd11f4a11eaa9e6077b2768e3e9b54ff727a93c03a909","c14e9e86f18189c7d32b5dd03b4cf3f40bed68f0509dec06d75d41b82c065fe2","bdb07038733b2d74a75ba9c381dcb92774cd6f161ee125bfa921eae7d883ccc9","ad93e960a3a07dff7394bf0c8a558006a9ff2d0725ab28fc33dec227d4cb251e",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"1d4ac8cbd56a1d3b2077d1503afa0a82c608efd7a7afe393e0c8ec525c6e1cd7","a59a7f2780989650e6c080f51cd211874c1523dcf4e293f190ba665134dbafe4","c4d29d7a54e1bfcff2f72c97d27c186b82d3355d5bf7916dfbe4eb3007206ec6","b63cad3134627a017a26a37677f9a929bfaf07591957864e6874c73a876298d4","3e700e258296820196d9de36e3e9e18e6c1ec7e352e44c1f916fc62b62597147","6295f7f8cb94385b886e47198afda9c2eaceb70476790d65faea186c509c5e19",{"version":"647ed5f3db192ac3277195ba641375b4a7538487babffa3fa81b561cef146fe6","affectsGlobalScope":true},"dd93f661cdaff73d6e6f5e4a4448702bdaa8f606d2f43884a94ace2eaa06a62e","7eb3eaa38d2682c28b900e64c02c8059493d3c4591540c7f9645576255592203","78fb2ed58010c6e0bf3d3653fb6b2e6cf7f4021bf90f488733f783f04b947e30","a78ab721871c0b436bff57c43eadf2f641b6d7bff0b8030c9aed6c1711157c2e","2859adaa4f2db3d4f0fc37ad86f056045341496b58fba0dbc16a222f9d5d55b1","655ed305e8f4cb95d3f578040301a4e4d6ace112b1bd8824cd32bda66c3677d1","c1363a4c8bc329b19c86319f7c3e042e607f98fb245917bddfb7996adf9d720c","166e8ae19a24b87a178c7c2dfc67103f7b9f982a0035848d2dde04d08f99fe9d","882039ce3cf413d2fdff070c407c3cc60ed6e407e6679635915eac38ac5f7ae3","bc44ac34c8e04255427778f52021d41803817fe5cfb677b26aa362040217164e","4f896ed76dcad0cdd75e5b71388d0c1d4f82b2026088fc189fbaf6c5ab98dcaa","c40cebcc27921ad9a00eaa996ae52cf6dd11164319581ab1a5dd6b5b14fe0d47","0ae96407a10a5e4030c393804484b2e383b6e854d0138167797ac2fc56fa4208","d457cb783b11f17b2d42bd72731ea98a237a6941b84c7a69df6371112b8f27f8","293afab2e7d35027c8778697eee3fd055dbe045039f902b34addce6bf4bd19c2","ea54ac159311e33fb74a1cb682ef015c00c1dd97ebc8fb7662907dccce9428c2","86a21c8d5ab7e720b3ad632b87a47991ad0dbace558a33545192502436881422","ea54ac159311e33fb74a1cb682ef015c00c1dd97ebc8fb7662907dccce9428c2","b3b879831b2f344946bf9d4c63f0d04521a781cf0b3b692a9cca5ffac27f8342",{"version":"0f3c9f21c6b0dcf48b9c3cbc5ca022451a732a8b82118c2d7d7782d59ea0bf69","affectsGlobalScope":true},"b2d8cbb803ddaa0a2742790e07eab833d8d31420813644492d6c1f5a16bc6e28","f6884a413a9bc1a7b699f29c2d47decd8951ad3f66a17a3c63794fbdbe6a99ea","1ed141f1949d28ef8406d86ea397d47cd8c41f0ed1735e5851ddfbffb8b0c5d2","b4e123af1af6049685c93073a15868b50aebdad666d422edc72fa2b585fa8a37","f86c04a744ebcede96bac376f9a2c90f2bd3c422740d91dda4ca6233199d4977","6ae1bddee5c790439bd992abd063b9b46e0cadd676c2a8562268d1869213ff60","606244fc97a6a74b877f2e924ba7e55b233bc6acb57d7bf40ba84a5be2d9adb0","4a1cabac71036b8a14f5db1b753b579f0c901c7d7b9227e6872dadf6efb104e8","062959a1d825b96639d87be35fe497cbd3f89544bf06fdad577bbfb85fcf604c","4c3672dc8f4e4fdd3d18525b22b31f1b5481f5a415db96550d3ac5163a6c3dd3","f9a69ca445010b91fe08f08c06e0f86d79c0d776905f9bdb828477cb2a1eb7fc","ad7fd0e7ee457d4884b3aaecbcbd2a80b6803407c4ce2540c296170d4c7918ef","a50ef21605f41c6acad6c3ef0307e5311b94963c846ca093c764b80cdb5318d6","74b4035dd26d09a417c44ca23ab5ee69b173f8c2f6b2e47350ab0795cf2d4a17","918f86ee2b19cc38cb8b1a4cf8f223eb228aaa39df3604c42f700fac2f0b3ea1","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","438284c7c455a29b9c0e2d1e72abc62ee93d9a163029ffe918a34c5db3b92da2","0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"5e099389ceec44681b37d10470755cdc6d9f516851e53c731c6e7e17b39ad86f","d7ea18c891c8c6bed36f29aa61ad4f60557cf6251fde6bc367445a730cfa3695","3cf40d431c974539c29c771b0a27e182c6d122c8ddb7b2b4164bb1505ad46802","977a2800819ce60055a20dc4c76194d14375bf851e670d4ca6bbb637c8c94c40","c1384f8fff926b21218d85e7aa5bcb828dc1c6cf4b5e83960c60a769f94bbce0","c8c7ba25921d089392a1fbfb8d3841580736203210c0e740d43c4b0e58608b9a","94242e24ed59cb36d7e5c0d0e3b44357eb14d85b05fbeafda29c363b4276a80d","14c3d5ee1830cf892dc390ca3d9dc2c8f7452c918c0a9687d8accefbaa01b7b7","fa3c58bafa5b7f64d88d4b4736a2ffc7d22bbd5f384f9aa03b1e1a504663168a","2ede475296f5fada41c0ba489a462454be2a91ef46c1556cc03622af94fc5bdc","1a2532558d091ddd7c4b59244db687424e67c7f611008ecd4166c54ea6dd7ce0","00091f0bfd314f3b6ac81603d2b33e024b9ad96f3b3c2d9a2127712b9704677f","50dac85307cb7faace39cc8fc30008388d19eed07744c5cb86762cdb0bbd3e23","0f03213997eaea9398bb2597545f25780ccf3a2508270f9e2b4ef213083e6ede","d22dd4724f77e74f8d3a1967e0a5bd14e8dc9cad11e3a428aed953ded322d8a3","4cab3b63aa7405fc8379fbc15d7f904caeae27efd2a850f621a6e4482f3fbb3e","f154d024f656bbfc1dee0735295c8d5c59744c2c89494d19414c96271ce6f3f2","39b59ff67b14228af357b207f13876fa76baa2240ac51ff362a4714e5ea29222","002a147cd18c767385e8752130b944fc0b6a97fa81c1ebef9935e772138dea1e","c5ef931b63a3665e29ed3c4c6631827f2c6f7e6c8433fcb2f6f03e70903faa20","cbd948872afe617e86cd40716e882c49f693052a57599bb095df261a0cd023f8","06df0767ed7ff25d26daf44fbe870fdc17c168064195f4cd3882b879a3220db3","5663e8efe327c69cb0a788844d007219dac046721d8b8cb4cb9c103ef34da64e","8f1939cb00a19f35f2b2fde4ec19b503ef81dd1bafe7ed674cf2b095c88497ed","5cdfd7ece2de1a4d639ed96c45684a410dc4c7e3bcf703126841f0f8d167e1fc","4e08fdfdc922d56b2026be6753789836ce743337b9addfc8904bf26e7563eef5","9d04022b9ca6bd7fb69c5f8e2e6fe70611041b40a97f758482ee5e45030c630d","dd93153104f5e7d80a6f05acb5f5463fe703fefc11b81b15571391ebd5db185c","64e7425eb52881fed45d9cdc71d08be0659800d8c5bae5b5462c94594c1ab5c2","aade1ce0f51f5999ca6ade38ffb76cd74c47fa582bfc49192e5649f741ee66f2","2b28c235f2ca53ce553676726533995a0b5fe08e9168f78c24570642e3a47ce2","409a7447759f27ae86e270b542bf6c8c50260f7426834e1a5f66ca80fcff30b2","7cb02c56ba198bac88ca0a6131c9385d61002cc48bdb258d55140e6f0cc99977","0fafef9609c651aafc9bef4110d1fcbf2e463149c50e2dba3da5a654ef92c397","38cf19d1ee5a66cd67a7cd1eceaa3c5943559990f15f69851f1e9ec7579609e1","83d29115019159f627040661bf12e6b915a84ddea2c837deac42fad6ec99a6a6","0f004a324d1ca8d95483b5a06b95347e075d5d1975b955e3eaf8855a59cc7b0e","5024433f8da3a7968f6d12cffd32f2cefae4442a9ad1c965fa2d23342338b700","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","65cfd1c0bc729fbc2b49fe66bc5ebddba5aa3a978c748e1d2e0d07f502238ce2","40304c033bb6e39f0eb01b106d29523950148dfc3cd547ddb500167871171281","82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","92450d617e92f96354d281c8ed5613fd16cacea79eb60b1e9736494b3c057e69","8a9086357fe289efb682dc925358f30b6312c7219a5ca92212857a0a79612012","92bc42ed0e2d41559513fd457ee30d834c2f0fedb9ed5004c029cbf0ad2f8bd9",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","e300bf65972ac08167a72787e19d1b43c285c5424707194d0ba64422f6b02c77","82772e5d55062a042a2715a555d347275a663940926fc785705eb082010cb9f6","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"61b60d145059c3c8e3c7b484713191b6d0b70999bcb11f2b26286b15926a2b5f","affectsGlobalScope":true},"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","a748205e90921674b09a2485f14558480793e89770521901f3ae7da1c41b860e","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","725b884357ba84171341a8e4cc08edf11417854fd069842ca6d22afb2e340e45","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","090ca38de36da6946266ef9057295341b6499c2fad4fe441afa50b2e864846b0","11ef35fa1e8aef8229ce6b62ac1a6a0761d1d4bb4de1538bce6d10762a919139","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","201f92d97704e7e17e1c6e208fea976d75ff7b04235b79057891a33c7330bd77","660fa40695c7ca19a59fd09d31d495d952eee946e445a2c455ec63f255ec3050","224b63b6ec3ed8fbabc53e119550862acde02075f1f37dd8822255eee310d994","389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3",{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true},"2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","1a255ad66d2b50f7b42eca69228b9587878cf06900780ad57a306a933c6eaeb4","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05",{"version":"f24768499dab9a34c0aff9c9e3fbfe5117001bfabba4a1db01a17df086d6a606","affectsGlobalScope":true},"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","fda7ad096a1619fbae01b3d869cc82e29116f22be50133ac8fb08cee21279acd","9751247ee3bbcf1c63592f0f4dafb44559680b2b3e5736b7f0578c6a737d74c8","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","b4786763dce6903c943cca62bf645820c0e475e1a4c42eb5b412c9660c9146fe","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","62b931417104c7cb35d0725e1869f51d52d7b18462fd58f32f846a314a42ba10",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"4ee363f83d7be2202f34fcd84c44da71bf3a9329fee8a05f976f75083a52ea94","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"2612ddb9dec0fdb148b20bff58d3737fe467e01b8662b4dc5f1304f792a87706","affectsGlobalScope":true},"94a274c882504de552300fc5d6be141820041e9e2c530064ea10a0b76e2f905f",{"version":"cffd3848b7af4922d70028c805b7df5e8f0eac4a8d2410b0f55b47ca62c6c3a8","affectsGlobalScope":true},"afedeaca75706705212ef95206d4612bbb64e2665260a1ada9a2cc8c29ad26f5","e03334588c63840b7054accd0b90f29c5890db6a6555ac0869a78a23297f1396","42287355b5372067743496816f5dfaf877fad5ce60645209b91db6aee8de898f","c220410b8e956fa157ce4e5e6ac871f0f433aa120c334d906ff1f5e2c7369e95","960a68ced7820108787135bdae5265d2cc4b511b7dcfd5b8f213432a8483daf1","ed3b711f533ddb3a5451f4c4bb0df3a0b95e9d0433b3b7834644dd1718d06d31","8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","87352bb579421f6938177a53bb66e8514067b4872ccaa5fe08ddbca56364570c","8109b2ef3ab54c7c855d7ec37074aab0574a2c20e9dd4c6d642f65edc51d1e84","ec89427601297d439c961528832a75017d9356bec2ee42c1d16f2274590d9330","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","41422586881bcd739b4e62d9b91cd29909f8572aa3e3cdf316b7c50f14708d49","9fd84c479ce3dc77858b0c91264db2f4932afc1e5808082811c8d13ca4fa90b2","54edd7f507924e5283efc12b90e95aa8d304c5bcdfdcaec22aa7b0e4d165151a","6d28df3f03f821b016bfd728289d8a99eca6053800d07f76f5d38d181f499208","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","9d74c7330800b325bb19cc8c1a153a612c080a60094e1ab6cfb6e39cf1b88c36","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","da297c98a5a86092b19aed23ddc61f5d0e64bc2fa83dc606a89d4e54dc6ec5a3",{"version":"c856e68ae3c730c5b59b0a5c0c8e951596ae79da7d29c9a1b1a8257109f3f3cc","affectsGlobalScope":true},"f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","d9f5e2cb6bce0d05a252e991b33e051f6385299b0dd18d842fc863b59173a18e","b2d70a269840a9528db473ac7565442434333a05c1f66801a7a672e82beb903e"],"options":{"composite":true,"declaration":true,"declarationDir":"./","declarationMap":true,"esModuleInterop":true,"module":1,"outDir":"./cjs","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":6},"fileIdsList":[[213,214,215],[159,161,162,163,164,165,166,169,213,214,215],[167,168,213,214,215],[160,213,214,215],[53,81,174,213,214,215],[50,53,73,81,177,178,179,213,214,215],[181,213,214,215],[182,183,213,214,215],[182,213,214,215],[53,81,213,214,215],[188,189,213,214,215],[185,186,187,188,213,214,215],[189,213,214,215],[50,53,81,191,192,213,214,215],[53,55,193,196,197,213,214,215],[175,192,193,195,213,214,215],[50,81,199,213,214,215],[51,81,213,214,215],[202,213,214,215],[50,53,55,58,67,73,81,213,214,215],[207,213,214,215],[208,213,214,215],[50,76,81,211,212,214,215],[213,214],[213,215],[50,81,213,214,215],[135,213,214,215],[123,125,126,127,128,129,130,131,132,133,134,135,213,214,215],[123,124,126,127,128,129,130,131,132,133,134,135,213,214,215],[124,125,126,127,128,129,130,131,132,133,134,135,213,214,215],[123,124,125,127,128,129,130,131,132,133,134,135,213,214,215],[123,124,125,126,128,129,130,131,132,133,134,135,213,214,215],[123,124,125,126,127,129,130,131,132,133,134,135,213,214,215],[123,124,125,126,127,128,130,131,132,133,134,135,213,214,215],[123,124,125,126,127,128,129,131,132,133,134,135,213,214,215],[123,124,125,126,127,128,129,130,132,133,134,135,213,214,215],[123,124,125,126,127,128,129,130,131,133,134,135,213,214,215],[123,124,125,126,127,128,129,130,131,132,134,135,213,214,215],[123,124,125,126,127,128,129,130,131,132,133,135,213,214,215],[123,124,125,126,127,128,129,130,131,132,133,134,213,214,215],[176,213,214,215],[53,73,81,213,214,215,220,221],[53,67,81,213,214,215],[50,51,58,67,213,214,215],[42,50,58,213,214,215],[74,213,214,215],[46,51,59,213,214,215],[67,213,214,215],[48,50,58,213,214,215],[50,213,214,215],[50,52,67,73,213,214,215],[51,213,214,215],[58,67,73,213,214,215],[50,51,53,58,67,70,73,213,214,215],[53,67,70,73,213,214,215],[38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,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,213,214,215],[73,213,214,215],[48,50,67,213,214,215],[40,213,214,215],[72,213,214,215],[65,74,76,213,214,215],[58,213,214,215],[64,213,214,215],[50,52,67,73,76,213,214,215],[210,213,214,215],[211,213,214,215],[213,214,215,234],[213,214,215,234,236],[213,214,215,234,237],[213,214,215,237,238,239,240,241],[213,214,215,229,231,232,233],[81,213,214,215],[53,81,194,213,214,215],[213,214,215,234,250,251],[213,214,215,254],[81,213,214,215,258,259,260,261,262,263,264,265,266,267,268],[213,214,215,257,258,267],[213,214,215,258,267],[213,214,215,248,257,258,267],[213,214,215,258],[46,213,214,215,257,267],[213,214,215,257,258,259,260,261,262,263,264,265,266,268],[46,81,213,214,215,253,254,255,256,269],[50,53,55,58,67,70,73,79,81,213,214,215],[213,214,215,272],[50,67,81,213,214,215],[92,213,214,215],[112,213,214,215],[111,213,214,215],[111,112,113,114,115,116,117,118,119,120,121,213,214,215],[114,213,214,215],[116,213,214,215],[88,93,213,214,215],[86,213,214,215],[84,213,214,215],[82,83,85,86,87,88,89,90,91,94,95,96,97,98,99,100,101,102,213,214,215],[88,213,214,215],[83,85,86,87,213,214,215],[83,88,213,214,215],[86,88,213,214,215],[50,81,82,83,85,88,213,214,215],[109,110,137,138,140,141,143,144,145,146,147,148,213,214,215],[103,104,108,213,214,215],[144,149,213,214,215],[170,213,214,215],[122,137,144,213,214,215],[140,144,213,214,215],[110,137,143,144,147,150,151,152,153,154,155,156,157,158,171,213,214,215],[144,148,149,213,214,215],[103,108,142,144,213,214,215],[137,140,144,213,214,215],[137,138,139,141,144,213,214,215],[136,213,214,215],[137,213,214,215],[108,140,144,145,146,213,214,215],[108,122,137,143,144,213,214,215],[103,110,137,138,141,143,213,214,215],[103,106,213,214,215],[106,107,213,214,215]],"referencedMap":[[162,1],[159,1],[164,1],[170,2],[169,3],[168,1],[167,1],[166,1],[163,1],[161,4],[160,1],[165,1],[173,1],[175,5],[176,1],[180,6],[182,7],[184,8],[183,9],[181,1],[174,10],[190,11],[185,1],[189,12],[186,13],[188,1],[193,14],[198,15],[196,16],[200,17],[201,18],[203,19],[204,1],[178,1],[205,20],[206,1],[207,1],[208,21],[209,22],[213,23],[215,24],[214,25],[187,1],[177,26],[136,27],[124,28],[125,29],[123,30],[126,31],[127,32],[128,33],[129,34],[130,35],[131,36],[132,37],[133,38],[134,39],[135,40],[216,19],[217,41],[194,1],[199,1],[218,1],[219,1],[221,1],[222,42],[220,43],[38,1],[40,1],[41,1],[42,44],[43,45],[44,46],[45,47],[46,48],[47,49],[48,1],[49,50],[50,50],[51,51],[52,52],[39,1],[80,1],[53,53],[54,54],[55,55],[81,56],[56,50],[57,57],[58,58],[59,1],[60,1],[61,59],[62,60],[63,1],[64,1],[65,50],[66,61],[67,50],[68,1],[69,1],[70,62],[71,1],[72,62],[73,63],[74,1],[75,48],[76,1],[77,1],[78,64],[79,48],[223,1],[224,50],[225,1],[226,1],[211,65],[210,66],[227,1],[228,1],[229,1],[230,1],[192,1],[191,1],[235,67],[236,68],[238,69],[240,67],[237,67],[239,69],[241,1],[242,70],[231,1],[234,71],[232,1],[243,72],[179,43],[244,1],[233,1],[245,1],[195,73],[246,1],[247,1],[248,1],[249,1],[250,1],[252,74],[251,67],[253,1],[212,1],[255,75],[202,1],[271,1],[269,76],[268,77],[259,78],[260,79],[261,79],[262,78],[263,78],[264,78],[265,80],[258,81],[266,77],[267,82],[257,1],[270,83],[197,84],[272,1],[273,85],[274,86],[93,87],[256,1],[113,88],[114,89],[122,90],[115,89],[116,89],[152,1],[92,1],[117,91],[111,1],[118,92],[112,89],[119,92],[104,1],[120,89],[121,92],[254,1],[7,1],[8,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[4,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[37,1],[32,1],[33,1],[34,1],[35,1],[1,1],[36,1],[10,1],[9,1],[94,93],[90,1],[89,94],[91,94],[85,95],[103,96],[83,97],[88,98],[101,97],[96,97],[102,99],[100,97],[95,97],[99,100],[97,97],[98,97],[84,1],[82,26],[87,1],[86,101],[149,102],[109,103],[150,104],[171,105],[146,1],[139,1],[138,106],[145,107],[172,108],[151,109],[143,110],[141,111],[140,112],[137,113],[154,114],[158,114],[153,114],[147,114],[156,114],[155,114],[157,114],[110,1],[148,115],[142,116],[144,117],[107,118],[108,119],[106,1],[105,96]],"exportedModulesMap":[[162,1],[159,1],[164,1],[170,2],[169,3],[168,1],[167,1],[166,1],[163,1],[161,4],[160,1],[165,1],[173,1],[175,5],[176,1],[180,6],[182,7],[184,8],[183,9],[181,1],[174,10],[190,11],[185,1],[189,12],[186,13],[188,1],[193,14],[198,15],[196,16],[200,17],[201,18],[203,19],[204,1],[178,1],[205,20],[206,1],[207,1],[208,21],[209,22],[213,23],[215,24],[214,25],[187,1],[177,26],[136,27],[124,28],[125,29],[123,30],[126,31],[127,32],[128,33],[129,34],[130,35],[131,36],[132,37],[133,38],[134,39],[135,40],[216,19],[217,41],[194,1],[199,1],[218,1],[219,1],[221,1],[222,42],[220,43],[38,1],[40,1],[41,1],[42,44],[43,45],[44,46],[45,47],[46,48],[47,49],[48,1],[49,50],[50,50],[51,51],[52,52],[39,1],[80,1],[53,53],[54,54],[55,55],[81,56],[56,50],[57,57],[58,58],[59,1],[60,1],[61,59],[62,60],[63,1],[64,1],[65,50],[66,61],[67,50],[68,1],[69,1],[70,62],[71,1],[72,62],[73,63],[74,1],[75,48],[76,1],[77,1],[78,64],[79,48],[223,1],[224,50],[225,1],[226,1],[211,65],[210,66],[227,1],[228,1],[229,1],[230,1],[192,1],[191,1],[235,67],[236,68],[238,69],[240,67],[237,67],[239,69],[241,1],[242,70],[231,1],[234,71],[232,1],[243,72],[179,43],[244,1],[233,1],[245,1],[195,73],[246,1],[247,1],[248,1],[249,1],[250,1],[252,74],[251,67],[253,1],[212,1],[255,75],[202,1],[271,1],[269,76],[268,77],[259,78],[260,79],[261,79],[262,78],[263,78],[264,78],[265,80],[258,81],[266,77],[267,82],[257,1],[270,83],[197,84],[272,1],[273,85],[274,86],[93,87],[256,1],[113,88],[114,89],[122,90],[115,89],[116,89],[152,1],[92,1],[117,91],[111,1],[118,92],[112,89],[119,92],[104,1],[120,89],[121,92],[254,1],[7,1],[8,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[4,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[37,1],[32,1],[33,1],[34,1],[35,1],[1,1],[36,1],[10,1],[9,1],[94,93],[90,1],[89,94],[91,94],[85,95],[103,96],[83,97],[88,98],[101,97],[96,97],[102,99],[100,97],[95,97],[99,100],[97,97],[98,97],[84,1],[82,26],[87,1],[86,101],[149,102],[109,103],[150,104],[171,105],[146,1],[139,1],[138,106],[145,107],[172,108],[151,109],[143,110],[141,111],[140,112],[137,113],[154,114],[158,114],[153,114],[147,114],[156,114],[155,114],[157,114],[110,1],[148,115],[142,116],[144,117],[107,118],[108,119],[106,1],[105,96]],"semanticDiagnosticsPerFile":[162,159,164,170,169,168,167,166,163,161,160,165,173,175,176,180,182,184,183,181,174,190,185,189,186,188,193,198,196,200,201,203,204,178,205,206,207,208,209,213,215,214,187,177,136,124,125,123,126,127,128,129,130,131,132,133,134,135,216,217,194,199,218,219,221,222,220,38,40,41,42,43,44,45,46,47,48,49,50,51,52,39,80,53,54,55,81,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,223,224,225,226,211,210,227,228,229,230,192,191,235,236,238,240,237,239,241,242,231,234,232,243,179,244,233,245,195,246,247,248,249,250,252,251,253,212,255,202,271,269,268,259,260,261,262,263,264,265,258,266,267,257,270,197,272,273,274,93,256,113,114,122,115,116,152,92,117,111,118,112,119,104,120,121,254,7,8,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,37,32,33,34,35,1,36,10,9,94,90,89,91,85,103,83,88,101,96,102,100,95,99,97,98,84,82,87,86,149,109,150,171,146,139,138,145,172,151,143,141,140,137,154,158,153,147,156,155,157,110,148,142,144,107,108,106,105]},"version":"4.3.5"}
|
|
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.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.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.es2019.full.d.ts","../../../node_modules/@types/node/assert.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/dns.d.ts","../../../node_modules/@types/node/domain.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/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/timers.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","../../../node_modules/@effection/core/dist-esm/state-machine.d.ts","../../../node_modules/@effection/core/dist-esm/labels.d.ts","../../../node_modules/@effection/core/dist-esm/run-loop.d.ts","../../../node_modules/@effection/core/dist-esm/future.d.ts","../../../node_modules/@effection/core/dist-esm/task.d.ts","../../../node_modules/@effection/core/dist-esm/symbol.d.ts","../../../node_modules/@effection/core/dist-esm/operation.d.ts","../../../node_modules/@effection/core/dist-esm/effection.d.ts","../../../node_modules/@effection/core/dist-esm/deprecated.d.ts","../../../node_modules/@effection/core/dist-esm/error.d.ts","../../../node_modules/event-target-shim/index.d.ts","../../../node_modules/abort-controller/dist/abort-controller.d.ts","../../../node_modules/@effection/core/dist-esm/abort-signal.d.ts","../../../node_modules/@effection/core/dist-esm/operations/sleep.d.ts","../../../node_modules/@effection/core/dist-esm/operations/ensure.d.ts","../../../node_modules/@effection/core/dist-esm/operations/timeout.d.ts","../../../node_modules/@effection/core/dist-esm/operations/with-timeout.d.ts","../../../node_modules/@effection/core/dist-esm/operations/spawn.d.ts","../../../node_modules/@effection/core/dist-esm/operations/race.d.ts","../../../node_modules/@effection/core/dist-esm/operations/all.d.ts","../../../node_modules/@effection/core/dist-esm/operations/label.d.ts","../../../node_modules/@effection/core/dist-esm/index.d.ts","../../../node_modules/performance-api/index.d.ts","../../globals/dist/keyboard-layout.d.ts","../../globals/dist/globals.d.ts","../../globals/dist/index.d.ts","../src/converge.ts","../src/merge-objects.ts","../../../node_modules/no-case/dist/index.d.ts","../../../node_modules/pascal-case/dist/index.d.ts","../../../node_modules/camel-case/dist/index.d.ts","../../../node_modules/capital-case/dist/index.d.ts","../../../node_modules/constant-case/dist/index.d.ts","../../../node_modules/dot-case/dist/index.d.ts","../../../node_modules/header-case/dist/index.d.ts","../../../node_modules/param-case/dist/index.d.ts","../../../node_modules/path-case/dist/index.d.ts","../../../node_modules/sentence-case/dist/index.d.ts","../../../node_modules/snake-case/dist/index.d.ts","../../../node_modules/change-case/dist/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/lodash.isequal/index.d.ts","../src/matcher.ts","../src/filter-set.ts","../src/escape-html.ts","../src/match.ts","../src/locator.ts","../src/serialize.ts","../src/interaction.ts","../src/specification.ts","../src/format.ts","../src/errors.ts","../src/matchers/matching.ts","../src/resolvers.ts","../src/constructor.ts","../src/create-interactor.ts","../src/inspector.ts","../../../node_modules/element-is-visible/dist/types/index.d.ts","../src/matchers/including.ts","../src/matchers/and.ts","../src/matchers/or.ts","../src/matchers/not.ts","../src/matchers/some.ts","../src/matchers/every.ts","../../../node_modules/@testing-library/user-event/dist/click.d.ts","../../../node_modules/@testing-library/user-event/dist/type/typeImplementation.d.ts","../../../node_modules/@testing-library/user-event/dist/type/index.d.ts","../../../node_modules/@testing-library/user-event/dist/clear.d.ts","../../../node_modules/@testing-library/user-event/dist/tab.d.ts","../../../node_modules/@testing-library/user-event/dist/hover.d.ts","../../../node_modules/@testing-library/user-event/dist/upload.d.ts","../../../node_modules/@testing-library/user-event/dist/paste.d.ts","../../../node_modules/@testing-library/user-event/dist/keyboard/types.d.ts","../../../node_modules/@testing-library/user-event/dist/keyboard/specialCharMap.d.ts","../../../node_modules/@testing-library/user-event/dist/keyboard/index.d.ts","../../../node_modules/@testing-library/user-event/dist/index.d.ts","../src/element/click.ts","../src/index.ts","../../../node_modules/@types/aria-query/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/color-name/index.d.ts","../../../node_modules/@types/color-convert/conversions.d.ts","../../../node_modules/@types/color-convert/route.d.ts","../../../node_modules/@types/color-convert/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/lib/rules/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/express-ws/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/is-function/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/ts4.0/index.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/npmlog/index.d.ts","../../../node_modules/@types/overlayscrollbars/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parsimmon/index.d.ts","../../../node_modules/@types/pretty-hrtime/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/q/index.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/@types/react/node_modules/csstype/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/react-syntax-highlighter/index.d.ts","../../../node_modules/@types/react-transition-group/Transition.d.ts","../../../node_modules/@types/react-transition-group/CSSTransition.d.ts","../../../node_modules/@types/react-transition-group/TransitionGroup.d.ts","../../../node_modules/@types/react-transition-group/SwitchTransition.d.ts","../../../node_modules/@types/react-transition-group/config.d.ts","../../../node_modules/@types/react-transition-group/index.d.ts","../../../node_modules/@types/resolve/index.d.ts","../../../node_modules/@types/scheduler/index.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sizzle/index.d.ts","../../../node_modules/@types/source-list-map/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/styled-jsx/css.d.ts","../../../node_modules/@types/styled-jsx/server.d.ts","../../../node_modules/@types/styled-jsx/index.d.ts","../../../node_modules/@types/tapable/index.d.ts","../../../node_modules/source-map/source-map.d.ts","../../../node_modules/@types/uglify-js/index.d.ts","../../../node_modules/anymatch/index.d.ts","../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../../node_modules/@types/webpack-sources/lib/Source.d.ts","../../../node_modules/@types/webpack-sources/lib/CompatSource.d.ts","../../../node_modules/@types/webpack-sources/lib/ConcatSource.d.ts","../../../node_modules/@types/webpack-sources/lib/OriginalSource.d.ts","../../../node_modules/@types/webpack-sources/lib/PrefixSource.d.ts","../../../node_modules/@types/webpack-sources/lib/RawSource.d.ts","../../../node_modules/@types/webpack-sources/lib/ReplaceSource.d.ts","../../../node_modules/@types/webpack-sources/lib/SizeOnlySource.d.ts","../../../node_modules/@types/webpack-sources/lib/SourceMapSource.d.ts","../../../node_modules/@types/webpack-sources/lib/index.d.ts","../../../node_modules/@types/webpack-sources/lib/CachedSource.d.ts","../../../node_modules/@types/webpack-sources/index.d.ts","../../../node_modules/@types/webpack/index.d.ts","../../../node_modules/@types/webpack-env/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts","../../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"ac3a8c4040e183ce38da69d23b96939112457d1936198e6542672b7963cf0fce","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",{"version":"1dad4fe1561d99dfd6709127608b99a76e5c2643626c800434f99c48038567ee","affectsGlobalScope":true},{"version":"a8fe23ae87c3e9d2877032cafeb290f2ebe0c51e216d175a0408b10915ebe9f0","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"cce43d02223f8049864f8568bed322c39424013275cd3bcc3f51492d8b546cb3","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"8dff1b4c2df638fcd976cbb0e636f23ab5968e836cd45084cc31d47d1ab19c49","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"8f4c9f651c8294a2eb1cbd12581fe25bfb901ab1d474bb93cd38c7e2f4be7a30","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"60761e6ea886034af0f294f025a7199360ce4e2c8ba4ec6408bc049cf9b89799","affectsGlobalScope":true},{"version":"506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f","d555cd63a3fc837840db192596273fdf52fb28092b0a33bec98e89a0334b3a4c",{"version":"3e432cdf56538889e5742d388cdf03d670bfb17f4547dbbb1daf90701ec790d5","affectsGlobalScope":true},"85d545d430795d54a8b2896f67f9aeb7bf19fd74a1469ae0627311eb72f0dfa2","a473cf45c3d9809518f8af913312139d9f4db6887dc554e0d06d0f4e52722e6b","10b3076ac94d93d107062c0874fcc02305d8b915961cf848df17778535774f39","3d68ecf05475492f041c88395372c3a01b30351619bebcd38287ab185be7f7e4",{"version":"36c956a3a6dc279f1e6b77aa4b97b7b229b7d828102573ef5002de456ff5e1d9","affectsGlobalScope":true},"45ac321f2e15d268fd74a90ddaa6467dcaaff2c5b13f95b4b85831520fb7a491","6e8b894365ab993dbb55c58542598d1548fdda072c974f98b89c218891e2ba09","ddd6169dff8e5263397a9399ba7ba92521d3959f8f9dcdc27f24403dc7b751ba","508e1e25ca40ea6cde332d3232c826fcd82f456f45ae535d817754684f048f9e",{"version":"2866a528b2708aa272ec3eaafd3c980abb23aec1ef831cfc5eb2186b98c37ce5","affectsGlobalScope":true},{"version":"8f8f6ee2a0c94077f79439f51640a625ac7e2f5dd6866bd3b5a41705c836adfc","affectsGlobalScope":true},"ee97aed5b4667a5c3003a1da4b108827fc64b888391417617d89b02ff134de9a","839421b494b57cd2bc0074e914130277051850eba6def6c25870056e6652640b","e18a4b529c9a05593e612130554d93a2b78b949cf1cf48c0b183071258f0e95a","88587b5c94b0c4f5d78026e4beeb93383b3933c860d9840b55d6bf47d7b632bb","a473ecd14d9bafbd6a33105524b033237bbf1d6ce2cd81eb71cc54bec2d83d55","9e8947666e44137405fd378f3a8a0515a492e967e552406c02b991c98c78fc61","0cff7901aedfe78e314f7d44088f07e2afa1b6e4f0473a4169b8456ca2fb245d","7a2a3ff87ffd4313a6a2f3b012e801dd249ee58152cedf90c8718dcd2c811fe3","69640cc2e76dad52daeb9914e6b70c5c9a5591a3a65190a2d3ea432cf0015e16","a39a4c527b7a2dc7a2661b711a534c10c76852c5ad6ae320767d3f7d2621b67d","1bb5c9857b2ee32c199dd85bc0f4c0299112485d6e5dc91428eabfdee0dbd68c",{"version":"5daba568741c8ed283d67bf370c626a91e09fdfbc6d4abe22a7f93e2cf5138b9","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","662661bbf9ccd869f3bca82d34234b2abdc95c657e2187c35352d42dddb24c2d","5caa645cc390a0a8d5a031072b6b4e49218c17017cd80a63bd2557b19be13c5f","4c4334eb5d8fae83416a361d787b55a5743916aed8af812a909898bc7333e709","6feb6f75a3e4e017f8e6e12740cf06f18eefcf829284fa310da6c7f4d44fb2eb","4fd3c4debadce3e9ab9dec3eb45f7f5e2e3d4ad65cf975a6d938d883cfb25a50","0953427f9c2498f71dd912fdd8a81b19cf6925de3e1ad67ab9a77b9a0f79bf0b","b709ff1f6d6235f5e9c8dcbce3e683ff24ec35046b232d5a281af083026018d1","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","40c6ed5dc58e1c6afa7dcd23b1697bf290cc5b1170c63d0a4dd12f52aa39291c","71d6da3b0150ecdcd16c08b3b546fe4cc7f53df642eccfeb03c813ee788fae0c","a364b4a8a015ae377052fa4fac94204d79a69d879567f444c7ceff1b7a18482d","c5ec3b97d9db756c689cd11f4a11eaa9e6077b2768e3e9b54ff727a93c03a909","c14e9e86f18189c7d32b5dd03b4cf3f40bed68f0509dec06d75d41b82c065fe2","bdb07038733b2d74a75ba9c381dcb92774cd6f161ee125bfa921eae7d883ccc9","ad93e960a3a07dff7394bf0c8a558006a9ff2d0725ab28fc33dec227d4cb251e",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"1d4ac8cbd56a1d3b2077d1503afa0a82c608efd7a7afe393e0c8ec525c6e1cd7","a59a7f2780989650e6c080f51cd211874c1523dcf4e293f190ba665134dbafe4","c4d29d7a54e1bfcff2f72c97d27c186b82d3355d5bf7916dfbe4eb3007206ec6","b63cad3134627a017a26a37677f9a929bfaf07591957864e6874c73a876298d4","3e700e258296820196d9de36e3e9e18e6c1ec7e352e44c1f916fc62b62597147","6295f7f8cb94385b886e47198afda9c2eaceb70476790d65faea186c509c5e19",{"version":"647ed5f3db192ac3277195ba641375b4a7538487babffa3fa81b561cef146fe6","affectsGlobalScope":true},"dd93f661cdaff73d6e6f5e4a4448702bdaa8f606d2f43884a94ace2eaa06a62e","7eb3eaa38d2682c28b900e64c02c8059493d3c4591540c7f9645576255592203","78fb2ed58010c6e0bf3d3653fb6b2e6cf7f4021bf90f488733f783f04b947e30","a78ab721871c0b436bff57c43eadf2f641b6d7bff0b8030c9aed6c1711157c2e","2859adaa4f2db3d4f0fc37ad86f056045341496b58fba0dbc16a222f9d5d55b1","655ed305e8f4cb95d3f578040301a4e4d6ace112b1bd8824cd32bda66c3677d1","c1363a4c8bc329b19c86319f7c3e042e607f98fb245917bddfb7996adf9d720c","166e8ae19a24b87a178c7c2dfc67103f7b9f982a0035848d2dde04d08f99fe9d","882039ce3cf413d2fdff070c407c3cc60ed6e407e6679635915eac38ac5f7ae3","bc44ac34c8e04255427778f52021d41803817fe5cfb677b26aa362040217164e","4f896ed76dcad0cdd75e5b71388d0c1d4f82b2026088fc189fbaf6c5ab98dcaa","c40cebcc27921ad9a00eaa996ae52cf6dd11164319581ab1a5dd6b5b14fe0d47","0ae96407a10a5e4030c393804484b2e383b6e854d0138167797ac2fc56fa4208","d457cb783b11f17b2d42bd72731ea98a237a6941b84c7a69df6371112b8f27f8","293afab2e7d35027c8778697eee3fd055dbe045039f902b34addce6bf4bd19c2","ea54ac159311e33fb74a1cb682ef015c00c1dd97ebc8fb7662907dccce9428c2","86a21c8d5ab7e720b3ad632b87a47991ad0dbace558a33545192502436881422","b3b879831b2f344946bf9d4c63f0d04521a781cf0b3b692a9cca5ffac27f8342",{"version":"b7e8033e44dda6c8508d8ab118c5440cb81aa310224c371063a90dc8a5225112","affectsGlobalScope":true},"b2d8cbb803ddaa0a2742790e07eab833d8d31420813644492d6c1f5a16bc6e28","f6884a413a9bc1a7b699f29c2d47decd8951ad3f66a17a3c63794fbdbe6a99ea","1ed141f1949d28ef8406d86ea397d47cd8c41f0ed1735e5851ddfbffb8b0c5d2","b4e123af1af6049685c93073a15868b50aebdad666d422edc72fa2b585fa8a37","f86c04a744ebcede96bac376f9a2c90f2bd3c422740d91dda4ca6233199d4977","6ae1bddee5c790439bd992abd063b9b46e0cadd676c2a8562268d1869213ff60","606244fc97a6a74b877f2e924ba7e55b233bc6acb57d7bf40ba84a5be2d9adb0","4a1cabac71036b8a14f5db1b753b579f0c901c7d7b9227e6872dadf6efb104e8","062959a1d825b96639d87be35fe497cbd3f89544bf06fdad577bbfb85fcf604c","4c3672dc8f4e4fdd3d18525b22b31f1b5481f5a415db96550d3ac5163a6c3dd3","f9a69ca445010b91fe08f08c06e0f86d79c0d776905f9bdb828477cb2a1eb7fc","ad7fd0e7ee457d4884b3aaecbcbd2a80b6803407c4ce2540c296170d4c7918ef","a50ef21605f41c6acad6c3ef0307e5311b94963c846ca093c764b80cdb5318d6","74b4035dd26d09a417c44ca23ab5ee69b173f8c2f6b2e47350ab0795cf2d4a17","918f86ee2b19cc38cb8b1a4cf8f223eb228aaa39df3604c42f700fac2f0b3ea1","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","438284c7c455a29b9c0e2d1e72abc62ee93d9a163029ffe918a34c5db3b92da2","0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"5e099389ceec44681b37d10470755cdc6d9f516851e53c731c6e7e17b39ad86f","d7ea18c891c8c6bed36f29aa61ad4f60557cf6251fde6bc367445a730cfa3695","3cf40d431c974539c29c771b0a27e182c6d122c8ddb7b2b4164bb1505ad46802","977a2800819ce60055a20dc4c76194d14375bf851e670d4ca6bbb637c8c94c40","c1384f8fff926b21218d85e7aa5bcb828dc1c6cf4b5e83960c60a769f94bbce0","c8c7ba25921d089392a1fbfb8d3841580736203210c0e740d43c4b0e58608b9a","94242e24ed59cb36d7e5c0d0e3b44357eb14d85b05fbeafda29c363b4276a80d","f3f85096f2696231f088aad24a2f87a06d9305b56b26c88df2416dfbd6d29480","fa3c58bafa5b7f64d88d4b4736a2ffc7d22bbd5f384f9aa03b1e1a504663168a","2ede475296f5fada41c0ba489a462454be2a91ef46c1556cc03622af94fc5bdc","1a2532558d091ddd7c4b59244db687424e67c7f611008ecd4166c54ea6dd7ce0","00091f0bfd314f3b6ac81603d2b33e024b9ad96f3b3c2d9a2127712b9704677f","50dac85307cb7faace39cc8fc30008388d19eed07744c5cb86762cdb0bbd3e23","0f03213997eaea9398bb2597545f25780ccf3a2508270f9e2b4ef213083e6ede","d22dd4724f77e74f8d3a1967e0a5bd14e8dc9cad11e3a428aed953ded322d8a3","4cab3b63aa7405fc8379fbc15d7f904caeae27efd2a850f621a6e4482f3fbb3e","f154d024f656bbfc1dee0735295c8d5c59744c2c89494d19414c96271ce6f3f2","39b59ff67b14228af357b207f13876fa76baa2240ac51ff362a4714e5ea29222","002a147cd18c767385e8752130b944fc0b6a97fa81c1ebef9935e772138dea1e","c5ef931b63a3665e29ed3c4c6631827f2c6f7e6c8433fcb2f6f03e70903faa20","cbd948872afe617e86cd40716e882c49f693052a57599bb095df261a0cd023f8","06df0767ed7ff25d26daf44fbe870fdc17c168064195f4cd3882b879a3220db3","5663e8efe327c69cb0a788844d007219dac046721d8b8cb4cb9c103ef34da64e","8f1939cb00a19f35f2b2fde4ec19b503ef81dd1bafe7ed674cf2b095c88497ed","5cdfd7ece2de1a4d639ed96c45684a410dc4c7e3bcf703126841f0f8d167e1fc","4e08fdfdc922d56b2026be6753789836ce743337b9addfc8904bf26e7563eef5","9d04022b9ca6bd7fb69c5f8e2e6fe70611041b40a97f758482ee5e45030c630d","dd93153104f5e7d80a6f05acb5f5463fe703fefc11b81b15571391ebd5db185c","64e7425eb52881fed45d9cdc71d08be0659800d8c5bae5b5462c94594c1ab5c2","aade1ce0f51f5999ca6ade38ffb76cd74c47fa582bfc49192e5649f741ee66f2","2b28c235f2ca53ce553676726533995a0b5fe08e9168f78c24570642e3a47ce2","409a7447759f27ae86e270b542bf6c8c50260f7426834e1a5f66ca80fcff30b2","7cb02c56ba198bac88ca0a6131c9385d61002cc48bdb258d55140e6f0cc99977","0fafef9609c651aafc9bef4110d1fcbf2e463149c50e2dba3da5a654ef92c397","38cf19d1ee5a66cd67a7cd1eceaa3c5943559990f15f69851f1e9ec7579609e1","83d29115019159f627040661bf12e6b915a84ddea2c837deac42fad6ec99a6a6","0f004a324d1ca8d95483b5a06b95347e075d5d1975b955e3eaf8855a59cc7b0e","5024433f8da3a7968f6d12cffd32f2cefae4442a9ad1c965fa2d23342338b700","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","65cfd1c0bc729fbc2b49fe66bc5ebddba5aa3a978c748e1d2e0d07f502238ce2","82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","92450d617e92f96354d281c8ed5613fd16cacea79eb60b1e9736494b3c057e69","8a9086357fe289efb682dc925358f30b6312c7219a5ca92212857a0a79612012","92bc42ed0e2d41559513fd457ee30d834c2f0fedb9ed5004c029cbf0ad2f8bd9",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","e300bf65972ac08167a72787e19d1b43c285c5424707194d0ba64422f6b02c77","82772e5d55062a042a2715a555d347275a663940926fc785705eb082010cb9f6","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"61b60d145059c3c8e3c7b484713191b6d0b70999bcb11f2b26286b15926a2b5f","affectsGlobalScope":true},"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","a748205e90921674b09a2485f14558480793e89770521901f3ae7da1c41b860e","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","725b884357ba84171341a8e4cc08edf11417854fd069842ca6d22afb2e340e45","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","090ca38de36da6946266ef9057295341b6499c2fad4fe441afa50b2e864846b0","11ef35fa1e8aef8229ce6b62ac1a6a0761d1d4bb4de1538bce6d10762a919139","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","201f92d97704e7e17e1c6e208fea976d75ff7b04235b79057891a33c7330bd77","660fa40695c7ca19a59fd09d31d495d952eee946e445a2c455ec63f255ec3050","224b63b6ec3ed8fbabc53e119550862acde02075f1f37dd8822255eee310d994","389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3",{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true},"2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05",{"version":"f24768499dab9a34c0aff9c9e3fbfe5117001bfabba4a1db01a17df086d6a606","affectsGlobalScope":true},"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","fda7ad096a1619fbae01b3d869cc82e29116f22be50133ac8fb08cee21279acd","9751247ee3bbcf1c63592f0f4dafb44559680b2b3e5736b7f0578c6a737d74c8","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","b4786763dce6903c943cca62bf645820c0e475e1a4c42eb5b412c9660c9146fe","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","62b931417104c7cb35d0725e1869f51d52d7b18462fd58f32f846a314a42ba10",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"4ee363f83d7be2202f34fcd84c44da71bf3a9329fee8a05f976f75083a52ea94","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"2612ddb9dec0fdb148b20bff58d3737fe467e01b8662b4dc5f1304f792a87706","affectsGlobalScope":true},{"version":"cffd3848b7af4922d70028c805b7df5e8f0eac4a8d2410b0f55b47ca62c6c3a8","affectsGlobalScope":true},"afedeaca75706705212ef95206d4612bbb64e2665260a1ada9a2cc8c29ad26f5","e03334588c63840b7054accd0b90f29c5890db6a6555ac0869a78a23297f1396","42287355b5372067743496816f5dfaf877fad5ce60645209b91db6aee8de898f","c220410b8e956fa157ce4e5e6ac871f0f433aa120c334d906ff1f5e2c7369e95","960a68ced7820108787135bdae5265d2cc4b511b7dcfd5b8f213432a8483daf1","ed3b711f533ddb3a5451f4c4bb0df3a0b95e9d0433b3b7834644dd1718d06d31","8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","87352bb579421f6938177a53bb66e8514067b4872ccaa5fe08ddbca56364570c","8109b2ef3ab54c7c855d7ec37074aab0574a2c20e9dd4c6d642f65edc51d1e84","ec89427601297d439c961528832a75017d9356bec2ee42c1d16f2274590d9330","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","41422586881bcd739b4e62d9b91cd29909f8572aa3e3cdf316b7c50f14708d49","9fd84c479ce3dc77858b0c91264db2f4932afc1e5808082811c8d13ca4fa90b2","54edd7f507924e5283efc12b90e95aa8d304c5bcdfdcaec22aa7b0e4d165151a","6d28df3f03f821b016bfd728289d8a99eca6053800d07f76f5d38d181f499208","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","9d74c7330800b325bb19cc8c1a153a612c080a60094e1ab6cfb6e39cf1b88c36","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","da297c98a5a86092b19aed23ddc61f5d0e64bc2fa83dc606a89d4e54dc6ec5a3",{"version":"c856e68ae3c730c5b59b0a5c0c8e951596ae79da7d29c9a1b1a8257109f3f3cc","affectsGlobalScope":true},"f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438","b2d70a269840a9528db473ac7565442434333a05c1f66801a7a672e82beb903e"],"options":{"composite":true,"declaration":true,"declarationDir":"./","declarationMap":true,"esModuleInterop":true,"module":1,"outDir":"./cjs","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":6},"fileIdsList":[[88,93,211,212,213],[211,212,213],[86,211,212,213],[84,211,212,213],[82,83,85,86,87,88,89,90,91,94,95,96,97,98,99,100,101,102,211,212,213],[88,211,212,213],[83,85,86,87,211,212,213],[83,88,211,212,213],[86,88,211,212,213],[50,81,211,212,213],[50,81,82,83,85,88,211,212,213],[158,160,161,162,163,164,165,168,211,212,213],[166,167,211,212,213],[159,211,212,213],[53,81,173,211,212,213],[50,53,73,81,175,176,177,211,212,213],[179,211,212,213],[180,181,211,212,213],[180,211,212,213],[53,81,211,212,213],[186,187,211,212,213],[183,184,185,186,211,212,213],[187,211,212,213],[50,53,81,189,190,211,212,213],[53,55,191,194,195,211,212,213],[174,190,191,193,211,212,213],[50,81,197,211,212,213],[51,81,211,212,213],[200,211,212,213],[50,53,55,58,67,73,81,211,212,213],[205,211,212,213],[206,211,212,213],[50,76,81,209,210,212,213],[211,212],[211,213],[134,211,212,213],[122,124,125,126,127,128,129,130,131,132,133,134,211,212,213],[122,123,125,126,127,128,129,130,131,132,133,134,211,212,213],[123,124,125,126,127,128,129,130,131,132,133,134,211,212,213],[122,123,124,126,127,128,129,130,131,132,133,134,211,212,213],[122,123,124,125,127,128,129,130,131,132,133,134,211,212,213],[122,123,124,125,126,128,129,130,131,132,133,134,211,212,213],[122,123,124,125,126,127,129,130,131,132,133,134,211,212,213],[122,123,124,125,126,127,128,130,131,132,133,134,211,212,213],[122,123,124,125,126,127,128,129,131,132,133,134,211,212,213],[122,123,124,125,126,127,128,129,130,132,133,134,211,212,213],[122,123,124,125,126,127,128,129,130,131,133,134,211,212,213],[122,123,124,125,126,127,128,129,130,131,132,134,211,212,213],[122,123,124,125,126,127,128,129,130,131,132,133,211,212,213],[53,73,81,211,212,213,217,218],[53,67,81,211,212,213],[50,51,58,67,211,212,213],[42,50,58,211,212,213],[74,211,212,213],[46,51,59,211,212,213],[67,211,212,213],[48,50,58,211,212,213],[50,211,212,213],[50,52,67,73,211,212,213],[51,211,212,213],[58,67,73,211,212,213],[50,51,53,58,67,70,73,211,212,213],[53,67,70,73,211,212,213],[38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,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,211,212,213],[73,211,212,213],[48,50,67,211,212,213],[40,211,212,213],[72,211,212,213],[65,74,76,211,212,213],[58,211,212,213],[64,211,212,213],[50,52,67,73,76,211,212,213],[208,211,212,213],[209,211,212,213],[211,212,213,231,232],[211,212,213,231,233],[211,212,213,231],[211,212,213,233,234,235,236,237],[211,212,213,226,228,229,230],[81,211,212,213],[53,81,192,211,212,213],[211,212,213,231,246,247],[211,212,213,250],[81,211,212,213,254,255,256,257,258,259,260,261,262,263,264],[211,212,213,253,254,263],[211,212,213,254,263],[211,212,213,244,253,254,263],[211,212,213,254],[46,211,212,213,253,263],[211,212,213,253,254,255,256,257,258,259,260,261,262,264],[46,81,211,212,213,249,250,251,252,265],[50,53,55,58,67,70,73,79,81,211,212,213],[211,212,213,268],[50,67,81,211,212,213],[92,211,212,213],[111,211,212,213],[110,211,212,213],[110,111,112,113,114,115,116,117,118,119,120,211,212,213],[113,211,212,213],[115,211,212,213],[108,109,136,137,139,140,142,143,144,145,146,147,211,212,213],[103,104,107,211,212,213],[143,148,211,212,213],[169,211,212,213],[121,136,143,211,212,213],[139,143,211,212,213],[109,136,142,143,146,149,150,151,152,153,154,155,156,157,170,211,212,213],[143,147,148,211,212,213],[103,107,141,143,211,212,213],[136,139,143,211,212,213],[136,137,138,140,143,211,212,213],[135,211,212,213],[136,211,212,213],[107,139,143,144,145,211,212,213],[107,121,136,142,143,211,212,213],[103,109,136,137,140,142,211,212,213],[103,105,211,212,213],[105,106,211,212,213]],"referencedMap":[[94,1],[90,2],[89,3],[91,3],[85,4],[103,5],[83,6],[88,7],[101,6],[96,6],[102,8],[100,6],[95,6],[99,9],[97,6],[98,6],[84,2],[82,10],[87,2],[86,11],[161,2],[158,2],[163,2],[169,12],[168,13],[167,2],[166,2],[165,2],[162,2],[160,14],[159,2],[164,2],[172,2],[174,15],[178,16],[180,17],[182,18],[181,19],[179,2],[173,20],[188,21],[183,2],[187,22],[184,23],[186,2],[191,24],[196,25],[194,26],[198,27],[199,28],[201,29],[202,2],[176,2],[203,30],[204,2],[205,2],[206,31],[207,32],[211,33],[213,34],[212,35],[185,2],[175,10],[135,36],[123,37],[124,38],[122,39],[125,40],[126,41],[127,42],[128,43],[129,44],[130,45],[131,46],[132,47],[133,48],[134,49],[214,29],[192,2],[197,2],[215,2],[216,2],[218,2],[219,50],[217,51],[38,2],[40,2],[41,2],[42,52],[43,53],[44,54],[45,55],[46,56],[47,57],[48,2],[49,58],[50,58],[51,59],[52,60],[39,2],[80,2],[53,61],[54,62],[55,63],[81,64],[56,58],[57,65],[58,66],[59,2],[60,2],[61,67],[62,68],[63,2],[64,2],[65,58],[66,69],[67,58],[68,2],[69,2],[70,70],[71,2],[72,70],[73,71],[74,2],[75,56],[76,2],[77,2],[78,72],[79,56],[220,2],[221,58],[222,2],[223,2],[209,73],[208,74],[224,2],[225,2],[226,2],[227,2],[190,2],[189,2],[232,75],[234,76],[236,77],[233,77],[235,76],[237,2],[238,78],[228,2],[231,79],[229,2],[239,80],[177,51],[240,2],[230,2],[241,2],[193,81],[242,2],[243,2],[244,2],[245,2],[246,2],[248,82],[247,77],[249,2],[210,2],[251,83],[200,2],[267,2],[265,84],[264,85],[255,86],[256,87],[257,87],[258,86],[259,86],[260,86],[261,88],[254,89],[262,85],[263,90],[253,2],[266,91],[195,92],[268,2],[269,93],[270,94],[93,95],[252,2],[112,96],[113,97],[121,98],[114,97],[115,97],[151,2],[92,2],[116,99],[110,2],[117,100],[111,97],[118,100],[104,2],[119,97],[120,100],[250,2],[7,2],[8,2],[12,2],[11,2],[2,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[3,2],[4,2],[24,2],[21,2],[22,2],[23,2],[25,2],[26,2],[27,2],[5,2],[28,2],[29,2],[30,2],[31,2],[6,2],[37,2],[32,2],[33,2],[34,2],[35,2],[1,2],[36,2],[10,2],[9,2],[148,101],[108,102],[149,103],[170,104],[145,2],[138,2],[137,105],[144,106],[171,107],[150,108],[142,109],[140,110],[139,111],[136,112],[153,113],[157,113],[152,113],[146,113],[155,113],[154,113],[156,113],[109,2],[147,114],[141,115],[143,116],[106,117],[107,118],[105,2]],"exportedModulesMap":[[94,1],[90,2],[89,3],[91,3],[85,4],[103,5],[83,6],[88,7],[101,6],[96,6],[102,8],[100,6],[95,6],[99,9],[97,6],[98,6],[84,2],[82,10],[87,2],[86,11],[161,2],[158,2],[163,2],[169,12],[168,13],[167,2],[166,2],[165,2],[162,2],[160,14],[159,2],[164,2],[172,2],[174,15],[178,16],[180,17],[182,18],[181,19],[179,2],[173,20],[188,21],[183,2],[187,22],[184,23],[186,2],[191,24],[196,25],[194,26],[198,27],[199,28],[201,29],[202,2],[176,2],[203,30],[204,2],[205,2],[206,31],[207,32],[211,33],[213,34],[212,35],[185,2],[175,10],[135,36],[123,37],[124,38],[122,39],[125,40],[126,41],[127,42],[128,43],[129,44],[130,45],[131,46],[132,47],[133,48],[134,49],[214,29],[192,2],[197,2],[215,2],[216,2],[218,2],[219,50],[217,51],[38,2],[40,2],[41,2],[42,52],[43,53],[44,54],[45,55],[46,56],[47,57],[48,2],[49,58],[50,58],[51,59],[52,60],[39,2],[80,2],[53,61],[54,62],[55,63],[81,64],[56,58],[57,65],[58,66],[59,2],[60,2],[61,67],[62,68],[63,2],[64,2],[65,58],[66,69],[67,58],[68,2],[69,2],[70,70],[71,2],[72,70],[73,71],[74,2],[75,56],[76,2],[77,2],[78,72],[79,56],[220,2],[221,58],[222,2],[223,2],[209,73],[208,74],[224,2],[225,2],[226,2],[227,2],[190,2],[189,2],[232,75],[234,76],[236,77],[233,77],[235,76],[237,2],[238,78],[228,2],[231,79],[229,2],[239,80],[177,51],[240,2],[230,2],[241,2],[193,81],[242,2],[243,2],[244,2],[245,2],[246,2],[248,82],[247,77],[249,2],[210,2],[251,83],[200,2],[267,2],[265,84],[264,85],[255,86],[256,87],[257,87],[258,86],[259,86],[260,86],[261,88],[254,89],[262,85],[263,90],[253,2],[266,91],[195,92],[268,2],[269,93],[270,94],[93,95],[252,2],[112,96],[113,97],[121,98],[114,97],[115,97],[151,2],[92,2],[116,99],[110,2],[117,100],[111,97],[118,100],[104,2],[119,97],[120,100],[250,2],[7,2],[8,2],[12,2],[11,2],[2,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[3,2],[4,2],[24,2],[21,2],[22,2],[23,2],[25,2],[26,2],[27,2],[5,2],[28,2],[29,2],[30,2],[31,2],[6,2],[37,2],[32,2],[33,2],[34,2],[35,2],[1,2],[36,2],[10,2],[9,2],[148,101],[108,102],[149,103],[170,104],[145,2],[138,2],[137,105],[144,106],[171,107],[150,108],[142,109],[140,110],[139,111],[136,112],[153,113],[157,113],[152,113],[146,113],[155,113],[154,113],[156,113],[109,2],[147,114],[141,115],[143,116],[106,117],[107,118],[105,2]],"semanticDiagnosticsPerFile":[94,90,89,91,85,103,83,88,101,96,102,100,95,99,97,98,84,82,87,86,161,158,163,169,168,167,166,165,162,160,159,164,172,174,178,180,182,181,179,173,188,183,187,184,186,191,196,194,198,199,201,202,176,203,204,205,206,207,211,213,212,185,175,135,123,124,122,125,126,127,128,129,130,131,132,133,134,214,192,197,215,216,218,219,217,38,40,41,42,43,44,45,46,47,48,49,50,51,52,39,80,53,54,55,81,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,220,221,222,223,209,208,224,225,226,227,190,189,232,234,236,233,235,237,238,228,231,229,239,177,240,230,241,193,242,243,244,245,246,248,247,249,210,251,200,267,265,264,255,256,257,258,259,260,261,254,262,263,253,266,195,268,269,270,93,252,112,113,121,114,115,151,92,116,110,117,111,118,104,119,120,250,7,8,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,37,32,33,34,35,1,36,10,9,148,108,149,170,145,138,137,144,171,150,142,140,139,136,153,157,152,146,155,154,156,109,147,141,143,106,107,105]},"version":"4.3.5"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@interactors/core",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-interactive-stories-v2.1",
|
|
4
4
|
"description": "Composable page objects for components",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"browser": "dist/esm/index.js",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"prepack:commonjs": "tsc --project ./tsconfig.build.json --outdir dist/cjs --module commonjs"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@effection/core": "2.2.0",
|
|
36
|
+
"@effection/core": "^2.2.0",
|
|
37
37
|
"@interactors/globals": "1.0.0-rc1.1",
|
|
38
38
|
"@testing-library/dom": "^8.5.0",
|
|
39
39
|
"@testing-library/user-event": "^13.2.1",
|
package/src/interaction.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2
2
|
import { Operation, Task, run, Symbol } from '@effection/core';
|
|
3
|
-
import {
|
|
3
|
+
import { globals, CommonInteraction, InteractionType } from '@interactors/globals';
|
|
4
4
|
import type { Interactor, FilterObject, FilterFn, FilterParams } from './specification';
|
|
5
5
|
import { serializeInteractionOptions } from './serialize';
|
|
6
6
|
|
|
@@ -21,36 +21,19 @@ export function isInteraction(x: unknown): x is Interaction<Element, unknown> {
|
|
|
21
21
|
*
|
|
22
22
|
* @typeParam T the return value of the promise that this interaction evaluates to.
|
|
23
23
|
*/
|
|
24
|
-
export
|
|
25
|
-
type: InteractionType;
|
|
26
|
-
|
|
24
|
+
export type Interaction<E extends Element, T = void> = CommonInteraction<T> & {
|
|
27
25
|
interactor: Interactor<E, any>;
|
|
26
|
+
|
|
28
27
|
run: (interactor: Interactor<E, any>) => Operation<T>;
|
|
29
|
-
/**
|
|
30
|
-
* Return a description of the interaction
|
|
31
|
-
*/
|
|
32
|
-
description: string;
|
|
33
|
-
/**
|
|
34
|
-
* Return a code representation of the interaction
|
|
35
|
-
*/
|
|
36
|
-
code: () => string;
|
|
37
|
-
/**
|
|
38
|
-
* Return a serialized options of the interaction
|
|
39
|
-
*/
|
|
40
|
-
options: SerializedInteractionOptions;
|
|
41
28
|
/**
|
|
42
29
|
* Perform the interaction
|
|
43
30
|
*/
|
|
44
31
|
action: () => Task<T>;
|
|
45
|
-
|
|
46
32
|
check?: () => Task<T>;
|
|
47
|
-
|
|
48
|
-
halt: () => Promise<void>;
|
|
49
|
-
|
|
50
33
|
[interactionSymbol]: true;
|
|
51
34
|
}
|
|
52
35
|
|
|
53
|
-
export
|
|
36
|
+
export type ActionInteraction<E extends Element, T = void> = Interaction<E, T> & {
|
|
54
37
|
type: "action";
|
|
55
38
|
check: undefined;
|
|
56
39
|
}
|
|
@@ -60,7 +43,7 @@ export interface ActionInteraction<E extends Element, T = void> extends Interact
|
|
|
60
43
|
*
|
|
61
44
|
* @typeParam T the return value of the promise that this interaction evaluates to.
|
|
62
45
|
*/
|
|
63
|
-
export
|
|
46
|
+
export type AssertionInteraction<E extends Element, T = void> = Interaction<E, T> & {
|
|
64
47
|
type: "assertion";
|
|
65
48
|
/**
|
|
66
49
|
* Perform the check
|
|
@@ -83,6 +66,7 @@ export function createInteraction<E extends Element, T, Q>(type: 'action', optio
|
|
|
83
66
|
export function createInteraction<E extends Element, T, Q>(type: 'assertion', options: InteractionOptions<E, T>, apply: FilterFn<Q, Element>): AssertionInteraction<E, T> & FilterObject<Q, Element>
|
|
84
67
|
export function createInteraction<E extends Element, T, Q>(type: InteractionType, options: InteractionOptions<E, T>, apply?: FilterFn<Q, Element>): Interaction<E, T> & Operation<T> {
|
|
85
68
|
let task: Task<T>;
|
|
69
|
+
let shouldCatchHalt = false
|
|
86
70
|
|
|
87
71
|
function operation(scope: Task): Operation<T> {
|
|
88
72
|
let run = () => options.run(options.interactor);
|
|
@@ -99,6 +83,17 @@ export function createInteraction<E extends Element, T, Q>(type: InteractionType
|
|
|
99
83
|
return task;
|
|
100
84
|
};
|
|
101
85
|
|
|
86
|
+
function catchHalt<T extends (reason: any) => any>(onReject?: T | null) {
|
|
87
|
+
return (reason: any) => {
|
|
88
|
+
if (shouldCatchHalt && reason instanceof Error && reason.message == 'halted') {
|
|
89
|
+
return reason
|
|
90
|
+
} else {
|
|
91
|
+
onReject?.(reason)
|
|
92
|
+
return reason
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
102
97
|
let serializedOptions = serializeInteractionOptions(type, options)
|
|
103
98
|
let interaction: Interaction<E, T> & Operation<T> = {
|
|
104
99
|
type,
|
|
@@ -109,15 +104,18 @@ export function createInteraction<E extends Element, T, Q>(type: InteractionType
|
|
|
109
104
|
action,
|
|
110
105
|
check: type === 'assertion' ? action : undefined,
|
|
111
106
|
code: () => serializedOptions.code(),
|
|
112
|
-
halt: () =>
|
|
107
|
+
halt: () => {
|
|
108
|
+
shouldCatchHalt = true
|
|
109
|
+
return action().halt()
|
|
110
|
+
},
|
|
113
111
|
[interactionSymbol]: true,
|
|
114
112
|
[Symbol.toStringTag]: `[interaction ${options.description}]`,
|
|
115
113
|
[Symbol.operation]: operation,
|
|
116
114
|
then(onFulfill, onReject) {
|
|
117
|
-
return action().then(onFulfill, onReject);
|
|
115
|
+
return action().then(onFulfill, catchHalt(onReject));
|
|
118
116
|
},
|
|
119
117
|
catch(onReject) {
|
|
120
|
-
return action().catch(onReject);
|
|
118
|
+
return action().catch(catchHalt(onReject));
|
|
121
119
|
},
|
|
122
120
|
finally(handler) {
|
|
123
121
|
return action().finally(handler);
|