@khanacademy/wonder-blocks-timing 4.0.1 → 4.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @khanacademy/wonder-blocks-timing
2
2
 
3
+ ## 4.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 695f2567: Provide a friendly name (for dev tools) for withActionScheduler
8
+
3
9
  ## 4.0.1
4
10
 
5
11
  ### Patch Changes
@@ -10,5 +10,8 @@ type WithoutActionScheduler<T> = Omit<T, "schedule">;
10
10
  * the additional action scheduler prop. To attach the additional prop to
11
11
  * these props use the `WithActionScheduler` type.
12
12
  */
13
- export default function withActionScheduler<Props extends WithActionSchedulerProps>(WrappedComponent: React.ComponentType<Props>): (props: WithoutActionScheduler<Props>) => JSX.Element;
13
+ export default function withActionScheduler<Props extends WithActionSchedulerProps>(WrappedComponent: React.ComponentType<Props>): {
14
+ (props: WithoutActionScheduler<Props>): JSX.Element;
15
+ displayName: string;
16
+ };
14
17
  export {};
package/dist/es/index.js CHANGED
@@ -201,9 +201,12 @@ function _extends() {
201
201
  }
202
202
 
203
203
  function withActionScheduler(WrappedComponent) {
204
- return props => React.createElement(ActionSchedulerProvider, null, schedule => React.createElement(WrappedComponent, _extends({}, props, {
204
+ const displayName = `withActionScheduler(${WrappedComponent.displayName || WrappedComponent.name})`;
205
+ const C = props => React.createElement(ActionSchedulerProvider, null, schedule => React.createElement(WrappedComponent, _extends({}, props, {
205
206
  schedule: schedule
206
207
  })));
208
+ C.displayName = displayName;
209
+ return C;
207
210
  }
208
211
 
209
212
  const useUpdatingRef = value => {
package/dist/index.js CHANGED
@@ -224,9 +224,12 @@ function _extends() {
224
224
  }
225
225
 
226
226
  function withActionScheduler(WrappedComponent) {
227
- return props => React__namespace.createElement(ActionSchedulerProvider, null, schedule => React__namespace.createElement(WrappedComponent, _extends({}, props, {
227
+ const displayName = `withActionScheduler(${WrappedComponent.displayName || WrappedComponent.name})`;
228
+ const C = props => React__namespace.createElement(ActionSchedulerProvider, null, schedule => React__namespace.createElement(WrappedComponent, _extends({}, props, {
228
229
  schedule: schedule
229
230
  })));
231
+ C.displayName = displayName;
232
+ return C;
230
233
  }
231
234
 
232
235
  const useUpdatingRef = value => {
@@ -9,7 +9,7 @@ import type { IInterval, SchedulePolicy, ClearPolicy } from "./types";
9
9
  * @implements {IInterval}
10
10
  */
11
11
  export default class Interval implements IInterval {
12
- _intervalId: number | null | undefined;
12
+ _intervalId: ReturnType<typeof setInterval> | null | undefined;
13
13
  _action: () => unknown;
14
14
  _intervalMs: number;
15
15
  /**
@@ -9,7 +9,7 @@ import type { ITimeout, SchedulePolicy, ClearPolicy } from "./types";
9
9
  * @implements {ITimeout}
10
10
  */
11
11
  export default class Timeout implements ITimeout {
12
- _timeoutId: number | null | undefined;
12
+ _timeoutId: ReturnType<typeof setTimeout> | null | undefined;
13
13
  _action: () => unknown;
14
14
  _timeoutMs: number;
15
15
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@khanacademy/wonder-blocks-timing",
3
3
  "private": false,
4
- "version": "4.0.1",
4
+ "version": "4.0.2",
5
5
  "design": "v1",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -17,8 +17,8 @@
17
17
  "react": "16.14.0"
18
18
  },
19
19
  "devDependencies": {
20
- "wb-dev-build-settings": "^0.9.7"
20
+ "@khanacademy/wb-dev-build-settings": "^1.0.0"
21
21
  },
22
22
  "author": "",
23
23
  "license": "MIT"
24
- }
24
+ }
@@ -18,11 +18,19 @@ type WithoutActionScheduler<T> = Omit<T, "schedule">;
18
18
  export default function withActionScheduler<
19
19
  Props extends WithActionSchedulerProps,
20
20
  >(WrappedComponent: React.ComponentType<Props>) {
21
- return (props: WithoutActionScheduler<Props>) => (
21
+ const displayName = `withActionScheduler(${
22
+ WrappedComponent.displayName || WrappedComponent.name
23
+ })`;
24
+
25
+ const C = (props: WithoutActionScheduler<Props>) => (
22
26
  <ActionSchedulerProvider>
23
27
  {(schedule: IScheduleActions) => (
24
28
  <WrappedComponent {...(props as Props)} schedule={schedule} />
25
29
  )}
26
30
  </ActionSchedulerProvider>
27
31
  );
32
+
33
+ C.displayName = displayName;
34
+
35
+ return C;
28
36
  }
@@ -9,8 +9,7 @@ describe("AnimationFrame", () => {
9
9
  // it here and map it to timeouts, that way we can use the fake timer
10
10
  // API to test our animation frame things.
11
11
  jest.spyOn(global, "requestAnimationFrame").mockImplementation(
12
- // @ts-expect-error [FEI-5019] - TS2345 - Argument of type '(fn: any, ...args: any) => NodeJS.Timeout' is not assignable to parameter of type '(callback: FrameRequestCallback) => number'.
13
- (fn: any, ...args: any) => setTimeout(fn, 0),
12
+ (fn: any, ...args: any) => setTimeout(fn, 0) as any,
14
13
  );
15
14
  jest.spyOn(global, "cancelAnimationFrame").mockImplementation(
16
15
  (id: any, ...args: any) => clearTimeout(id),
@@ -46,13 +45,14 @@ describe("AnimationFrame", () => {
46
45
 
47
46
  it("requests an animation frame when schedule policy is SchedulePolicy.Immediately", () => {
48
47
  // Arrange
48
+ const spy = jest.spyOn(global, "requestAnimationFrame");
49
49
 
50
50
  // Act
51
51
  // eslint-disable-next-line no-new
52
52
  new AnimationFrame(() => {}, SchedulePolicy.Immediately);
53
53
 
54
54
  // Assert
55
- expect(requestAnimationFrame).toHaveBeenCalledTimes(1);
55
+ expect(spy).toHaveBeenCalledTimes(1);
56
56
  });
57
57
  });
58
58
 
@@ -98,27 +98,25 @@ describe("AnimationFrame", () => {
98
98
  describe("#set", () => {
99
99
  it("should call requestAnimationFrame", () => {
100
100
  // Arrange
101
+ const spy = jest.spyOn(global, "requestAnimationFrame");
101
102
  const animationFrame = new AnimationFrame(() => {});
102
103
 
103
104
  // Act
104
105
  animationFrame.set();
105
106
 
106
107
  // Assert
107
- expect(requestAnimationFrame).toHaveBeenNthCalledWith(
108
- 1,
109
- expect.any(Function),
110
- );
108
+ expect(spy).toHaveBeenNthCalledWith(1, expect.any(Function));
111
109
  });
112
110
 
113
111
  it("should invoke requestAnimationFrame to call the given action", () => {
114
112
  // Arrange
113
+ const spy = jest.spyOn(global, "requestAnimationFrame");
115
114
  const action = jest.fn();
116
115
  const animationFrame = new AnimationFrame((time: any) =>
117
116
  action(time),
118
117
  );
119
118
  animationFrame.set();
120
- // @ts-expect-error [FEI-5019] - TS2339 - Property 'mock' does not exist on type '(callback: FrameRequestCallback) => number'.
121
- const scheduledAction = requestAnimationFrame.mock.calls[0][0];
119
+ const scheduledAction = spy.mock.calls[0][0];
122
120
 
123
121
  // Act
124
122
  scheduledAction(2001);
@@ -144,6 +142,7 @@ describe("AnimationFrame", () => {
144
142
 
145
143
  it("should set the timeout again if it has already executed", () => {
146
144
  // Arrange
145
+ const spy = jest.spyOn(global, "requestAnimationFrame");
147
146
  const action = jest.fn();
148
147
  const animationFrame = new AnimationFrame(
149
148
  action,
@@ -156,7 +155,7 @@ describe("AnimationFrame", () => {
156
155
  animationFrame.set();
157
156
 
158
157
  // Assert
159
- expect(requestAnimationFrame).toHaveBeenCalledTimes(2);
158
+ expect(spy).toHaveBeenCalledTimes(2);
160
159
  });
161
160
  });
162
161
 
@@ -15,7 +15,7 @@ import type {IInterval, SchedulePolicy, ClearPolicy} from "./types";
15
15
  * @implements {IInterval}
16
16
  */
17
17
  export default class Interval implements IInterval {
18
- _intervalId: number | null | undefined;
18
+ _intervalId: ReturnType<typeof setInterval> | null | undefined;
19
19
  _action: () => unknown;
20
20
  _intervalMs: number;
21
21
 
@@ -75,7 +75,6 @@ export default class Interval implements IInterval {
75
75
  if (this.isSet) {
76
76
  this.clear(ClearPolicies.Cancel);
77
77
  }
78
- // @ts-expect-error [FEI-5019] - TS2322 - Type 'Timer' is not assignable to type 'number'.
79
78
  this._intervalId = setInterval(() => this._action(), this._intervalMs);
80
79
  }
81
80
 
@@ -15,7 +15,7 @@ import type {ITimeout, SchedulePolicy, ClearPolicy} from "./types";
15
15
  * @implements {ITimeout}
16
16
  */
17
17
  export default class Timeout implements ITimeout {
18
- _timeoutId: number | null | undefined;
18
+ _timeoutId: ReturnType<typeof setTimeout> | null | undefined;
19
19
  _action: () => unknown;
20
20
  _timeoutMs: number;
21
21
 
@@ -77,7 +77,6 @@ export default class Timeout implements ITimeout {
77
77
  if (this.isSet) {
78
78
  this.clear(ClearPolicies.Cancel);
79
79
  }
80
- // @ts-expect-error [FEI-5019] - TS2322 - Type 'Timeout' is not assignable to type 'number'.
81
80
  this._timeoutId = setTimeout(
82
81
  () => this.clear(ClearPolicies.Resolve),
83
82
  this._timeoutMs,
@@ -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.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.es2016.full.d.ts","./src/util/types.ts","./src/util/policies.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../../node_modules/@types/react/index.d.ts","./src/util/timeout.ts","./src/util/interval.ts","./src/util/animation-frame.ts","./src/util/action-scheduler.ts","./src/components/action-scheduler-provider.ts","./src/components/with-action-scheduler.tsx","./src/hooks/internal/use-updating-ref.ts","./src/hooks/use-interval.ts","./src/hooks/use-timeout.ts","./src/hooks/use-scheduled-interval.ts","./src/hooks/use-scheduled-timeout.ts","./src/index.ts","../../node_modules/@types/aria-query/index.d.ts","../../node_modules/@testing-library/dom/types/matches.d.ts","../../node_modules/@testing-library/dom/types/wait-for.d.ts","../../node_modules/@testing-library/dom/types/query-helpers.d.ts","../../node_modules/@testing-library/dom/types/queries.d.ts","../../node_modules/@testing-library/dom/types/get-queries-for-element.d.ts","../../node_modules/@testing-library/dom/node_modules/pretty-format/build/types.d.ts","../../node_modules/@testing-library/dom/node_modules/pretty-format/build/index.d.ts","../../node_modules/@testing-library/dom/types/screen.d.ts","../../node_modules/@testing-library/dom/types/wait-for-element-to-be-removed.d.ts","../../node_modules/@testing-library/dom/types/get-node-text.d.ts","../../node_modules/@testing-library/dom/types/events.d.ts","../../node_modules/@testing-library/dom/types/pretty-dom.d.ts","../../node_modules/@testing-library/dom/types/role-helpers.d.ts","../../node_modules/@testing-library/dom/types/config.d.ts","../../node_modules/@testing-library/dom/types/suggestions.d.ts","../../node_modules/@testing-library/dom/types/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-dom/test-utils/index.d.ts","../../node_modules/@testing-library/react/types/index.d.ts","./src/components/__tests__/action-scheduler-provider.test.tsx","./src/components/__tests__/with-action-scheduler.test.tsx","../../node_modules/@testing-library/react-hooks/lib/types/index.d.ts","../../node_modules/@testing-library/react-hooks/lib/types/react.d.ts","../../node_modules/@testing-library/react-hooks/lib/pure.d.ts","../../node_modules/@testing-library/react-hooks/lib/index.d.ts","./src/hooks/__tests__/use-interval.test.ts","./src/hooks/__tests__/use-scheduled-interval.test.ts","./src/hooks/__tests__/use-scheduled-timeout.test.ts","./src/hooks/__tests__/use-timeout.test.ts","./src/util/types.typestest.tsx","./src/util/__tests__/action-scheduler.test.ts","./src/util/__tests__/animation-frame.test.ts","./src/util/__tests__/interval.test.ts","./src/util/__tests__/timeout.test.ts","./types/aphrodite.d.ts","./types/matchers.d.ts","./types/utility.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/acorn/index.d.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/color-name/index.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/concat-stream/index.d.ts","../../node_modules/@types/ms/index.d.ts","../../node_modules/@types/debug/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/eslint/node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/estree-jsx/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/history/DOMUtils.d.ts","../../node_modules/@types/history/createBrowserHistory.d.ts","../../node_modules/@types/history/createHashHistory.d.ts","../../node_modules/@types/history/createMemoryHistory.d.ts","../../node_modules/@types/history/LocationUtils.d.ts","../../node_modules/@types/history/PathUtils.d.ts","../../node_modules/@types/history/index.d.ts","../../node_modules/@types/html-minifier-terser/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/is-ci/node_modules/ci-info/index.d.ts","../../node_modules/@types/is-ci/index.d.ts","../../node_modules/@types/is-empty/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/@jest/expect-utils/build/index.d.ts","../../node_modules/chalk/index.d.ts","../../node_modules/pretty-format/node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/pretty-format/node_modules/@jest/schemas/build/index.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/expect/build/index.d.ts","../../node_modules/@types/jest/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/json-schema/index.d.ts","../../node_modules/@types/json5/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/mdast/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/nlcst/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/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/pretty-hrtime/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/react-router/index.d.ts","../../node_modules/@types/react-router-dom/index.d.ts","../../node_modules/@types/react-test-renderer/index.d.ts","../../node_modules/@types/react-window/index.d.ts","../../node_modules/@types/resolve/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts","../../node_modules/@types/source-list-map/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/supports-color/index.d.ts","../../node_modules/@types/tapable/index.d.ts","../../node_modules/@types/testing-library__jest-dom/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/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"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"2dfbb27de6bf0db1018122b054d26cf1fc47bc1979d096aec101b08a42c63b13",{"version":"5f851373b542965970745eac0d0d04191f3f8bd9095bdf86b9c51be757d5179f","signature":"28ae84922b6341a520ca9f87c018be7a521ef8987af10c3f458ec495b12ea5df"},{"version":"d34efeb4dd056e31cc702393f82cffb08628c468880aa9a8dce70d25c2d5bb0e","signature":"ff3ea918663dbe13e8f55f34403ad8bfc0f8d9e63a70a648b0f36cc19a6de6e7"},{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"5b1d4ebd62d975c7d3826202f8fac290bac0bae6e04d9e84d1707d7047e108df","a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"51da54ddc920585f6f7ad98b6ba9916dfbb42ce4b8a872fd4f9a4cc93491f404","affectsGlobalScope":true},{"version":"27eb78ddc1c06cf30fefb4820d32968b0d69d471692f513229d60f9b482e77ea","signature":"b949cc812fc1427b042ef1286b3ecc7cbeb59d3ea84d3d28d354f9424b6a11e0"},{"version":"c61ac6437009368f581c942e08e6e5de07b27e0c441c23e4e1feb66c33b7bec9","signature":"97a5f81fa0030e37ab1bc24f548cee91346b20686304f50865e477d0695a83b3"},{"version":"426b185b73d79cb3a25bf3b323a16a8559908c5d17a2cbe353529698b9113f99","signature":"0c166462686325fe6cadcb364cb8a0ae2c452be312087aa5d8fbfbd73cbdb351"},{"version":"115f03c593ae209d02b9a67bdf9bd7c3a9cf6da6a6d28b54574bd5255c8480fa","signature":"66b5d5fb1e982333346fd4c9fde5f55c350bb3eec0d486436d2fd8024a9cda4b"},{"version":"0ae154b5f8f92e8f5c7c9184051aacacf451474784eb0cc5436279124bbe18f6","signature":"db439c7d63de2fb0e8b142f148a05cc5f0e0e954d2264f71742a15b04836f989"},{"version":"897116957b1edb891d12023b8bccdfa781cab0dab646c7f0d4cf880f08d18f23","signature":"4aa06fc0d1b6b656392302ab16246219c79b5c1effe62f24e41e1cf67f4335ea"},{"version":"7dd7fe2e0035f40f0a6de33d7e5ed2c115d0f2a7986122b3def077893620fdb0","signature":"cf4df4925a52635eeba3103dc32d7ceba565efac0cc0b951456277c4cd332275"},{"version":"de10b07a4542cd1338bef34a2c1b593a43765731bd64afcc94160f219b79ed1b","signature":"2d695e879a6c8dd74ede7081e7bd7703a5c2d17fa25ebdb82ab6976fc02ebd37"},{"version":"d78eb3ce58eab852d6ff7317fb09bac898d593d23e6e59d40015fdc710bc1502","signature":"e542c8ff13b66697a2269274dac1ef6cb61acebbeeed133484b6777091173105"},{"version":"1bb7a40b5b1ee64d701aace884c8777fd05921c1c1e060b2821a3cefd70bf477","signature":"6e2a7bbd91786967af5fe0a9623768290f05765cbedef3bffb12342dce32a03e"},{"version":"fee8009b9cdd429c2b00864e72b0ed1fc1f5299149085687b97e3c00f6ccf60e","signature":"fee6c9d76345eef17734a2f743b1a679e269e11216f7d57cd33597005e6b6251"},{"version":"501954d565b63117d8f61d2021fc464e584df95cdad3888a77537f8bda55d8d1","signature":"d665463a188fa5bb07ed3ac3c900234d26d42a63c4aa7c917e9d543fad7c2a45"},"5024433f8da3a7968f6d12cffd32f2cefae4442a9ad1c965fa2d23342338b700","f70bc756d933cc38dc603331a4b5c8dee89e1e1fb956cfb7a6e04ebb4c008091","8387ec1601cf6b8948672537cf8d430431ba0d87b1f9537b4597c1ab8d3ade5b","d16f1c460b1ca9158e030fdf3641e1de11135e0c7169d3e8cf17cc4cc35d5e64","fbc350d1cb7543cb75fdd5f3895ab9ac0322268e1bd6a43417565786044424f3","e3c5ad476eb2fca8505aee5bdfdf9bf11760df5d0f9545db23f12a5c4d72a718","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","d0570ce419fb38287e7b39c910b468becb5b2278cf33b1000a3d3e82a46ecae2","3aca7f4260dad9dcc0a0333654cb3cde6664d34a553ec06c953bce11151764d7","a0a6f0095f25f08a7129bc4d7cb8438039ec422dc341218d274e1e5131115988","cb3aaf306b5ff2ec718359e2e2244263c0b364c35759b1467c16caa113ccb849","45785e608b3d380c79e21957a6d1467e1206ac0281644e43e8ed6498808ace72","a3ce619711ff1bcdaaf4b5187d1e3f84e76064909a7c7ecb2e2f404f145b7b5c","2a90177ebaef25de89351de964c2c601ab54d6e3a157cba60d9cd3eaf5a5ee1a","82200e963d3c767976a5a9f41ecf8c65eca14a6b33dcbe00214fcbe959698c46","b4966c503c08bbd9e834037a8ab60e5f53c5fd1092e8873c4a1c344806acdab2","b567296d1820a1e50b6522c99a4f272c70eb2cba690da6e64a25635b70b1383f","b72fe4260471b06163a05df5228c09b76472b09ea315b7a2df52343181fe906f","852babd1fbe53723547566ba74312e48f9ecd05241a9266292e7058c34016ce8",{"version":"c3b91779d40d501c143f1f39b649ece6d68a935022cc433826d7e2458cb5b02c","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"6ddb568f0082a0435cfc3673b9bc95b229b3dfdcefa076535abec01e32ce4ded","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"b099d8d62ff020ecdb2ca181a96818b1a23e8de85ccbab6a81df9ff24ebcd615","61337090bd8136b17c5e5657051ea3226ea3ad28a73152be5b905f6c1f44bc0e","85e9ae257ffaf39f82090b436013b4398157f6a3f205e2e995c6977fa69356d8","15f22e0d2b12a74931641f1eea436a198bec2a710aa6a5a8402b1b01a698eb0c",{"version":"d5390a4aecac380f774c05ba454c19a340ebfd714c75fddaa0d95250be62010c","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"d6f9f8e36e9c17f1169866cfcde201d51359da55763f034c73c6824061e0dfea","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"e3c75f973e9df1b9853f6d84e7286791d279b71d0b43861dc97645630c19778e","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"ea97d6e9b77419d996b8ec41c36c78f8b47aca403d067b21af593ba256933666","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"060356c24ea0140366c0d0930b31e812a41898489f9b1b0eaa1ee063ee555aea","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"40a7610b2b7994d057fe4c082bde4e22bef9cb72163a60dfa883efbbd2bca1e5","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"12e7aa2c13e5370012711654859574509417e6dfba78ce8d34c134af51c7c5ec","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"ce06cc1b887ba76c7c558a0b25e6c69ed4d3980016fbb79b17abb02abdb681c0","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"9d8014c9d5fd4987ed8d576ef3247204cd07dcfdec10e87fa819f847d0e18d32","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"e5eded91d451a61471ff30c11e4df908f7eb1464689977f4702a562489db2c86",{"version":"9be348abf5d43091876a86f9acf23927a240915f8fc6d51155dbe5bdb69ef229","affectsGlobalScope":true},{"version":"0edf50909110994834718a7582b9ceedf20b14aa9fde0351eb2ac2cf5f430feb","affectsGlobalScope":true},"946bd1737d9412395a8f24414c70f18660b84a75a12b0b448e6eb1a2161d06dd","3777eb752cef9aa8dd35bb997145413310008aa54ec44766de81a7ad891526cd","a20fc1fcd9cd7c2b79d5f00d14802c1d58c3848e09ee4f84b350591af88b7636","19fb2161edf60fbe73ee3650c1cee889df0525ed852eff2d5fa6e5480c132ae3","b4f76b34637d79cefad486127115fed843762c69512d7101b7096e1293699679","3e0a34f7207431d967dc32d593d1cda0c23975e9484bc8895b39d96ffca4a0d8","44d81327b8fbb2d7ca0701f5b7bb73e48036eb99a87356acf95f19ed96e907aa","b6ddf3a46ccfa4441d8be84d2e9bf3087573c48804196faedbd4a25b60631beb","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true},"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f",{"version":"17a1140b90821c2c8d7064c9fc7598797c385714e6aa88b85e30b1159af8dc9b","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","dab86d9604fe40854ef3c0a6f9e8948873dc3509213418e5e457f410fd11200f","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"2c45b35f4850881ab132f80d3cb51e8a359a4d8fafdc5ff2401d260dc27862f4","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","09326ae5f7e3d49be5cd9ea00eb814770e71870a438faa2efd8bdd9b4db21320",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"ed2a670a77a1b80653c5bde2d813b0ab2e92872cc9b2b611ce11050b95139be6","0bcda522a4bb74c79e11a2c932db88eaca087a6fb11eb3fda4aaa4d655b1783e","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","8d9d743d7c21d105be24d154834a94557671c0ab0fc7f7329d3076784a80aa93","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","f54243828d27a24d59ebf25740dfe6e7dff3931723f8ce7b658cdbe766f89da9","1d1e6bd176eee5970968423d7e215bfd66828b6db8d54d17afec05a831322633","725b884357ba84171341a8e4cc08edf11417854fd069842ca6d22afb2e340e45","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","ac295e0d29ca135d7dca2069a6e57943ed18800754dbe8fcb3974fb9ce497c3c",{"version":"271cde49dfd9b398ccc91bb3aaa43854cf76f4d14e10fed91cbac649aa6cbc63","affectsGlobalScope":true},"2bcecd31f1b4281710c666843fc55133a0ee25b143e59f35f49c62e168123f4b","a6273756fa05f794b64fe1aff45f4371d444f51ed0257f9364a8b25f3501915d","9c4e644fe9bf08d93c93bd892705842189fe345163f8896849d5964d21b56b78","25d91fb9ed77a828cc6c7a863236fb712dafcd52f816eec481bd0c1f589f4404","4cd14cea22eed1bfb0dc76183e56989f897ac5b14c0e2a819e5162eafdcfe243","8d32432f68ca4ce93ad717823976f2db2add94c70c19602bf87ee67fe51df48b","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","6a61697f65beb341884485c695894ee1876a45c1a7190d76cb4a57a679c9d5b8","a3e5b8b86e7bd38d9afdc294875c4445c535319e288d3a13c1e2e41f9af934f2","d45d40831ccbd547e3f4ae8f326420b9e454dd27fa970f417c8e94a23e93db29","11ef35fa1e8aef8229ce6b62ac1a6a0761d1d4bb4de1538bce6d10762a919139","9e951ec338c4232d611552a1be7b4ecec79a8c2307a893ce39701316fe2374bd","70c61ff569aabdf2b36220da6c06caaa27e45cd7acac81a1966ab4ee2eadc4f2","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","6c1e688f95fcaf53b1e41c0fdadf2c1cfc96fa924eaf7f9fdb60f96deb0a4986","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","db25694be959314fd1e868d72e567746db1db9e2001fae545d12d2a8c1bba1b8","43883cf3635bb1846cbdc6c363787b76227677388c74f7313e3f0edb380840fa","2d47012580f859dae201d2eef898a416bdae719dffc087dfd06aefe3de2f9c8d","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","2cec1a31729b9b01e9294c33fc9425d336eff067282809761ad2e74425d6d2a5",{"version":"5bc4bb5796ce660d9869477983aac87734e19fecd1ad60fb0b13ffe1f1a450ed","affectsGlobalScope":true},"fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd20dfa2434a61a87e3fa9450f9de2ed2c365ea43b17b34ac6616d90d9681381","389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3",{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","1b23c2aae14c17f361f6fcef69be7a298f47c27724c9a1f891ea52eeea0a9f7f","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","0d65b782b1a9b5891802ef2022c78481b19dfe133ba8d9f7596fe1320314342d","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","1d4bc73751d6ec6285331d1ca378904f55d9e5e8aeaa69bc45b675c3df83e778","8017277c3843df85296d8730f9edf097d68d7d5f9bc9d8124fcacf17ecfd487e","408cc7117448f4994a1f50468648a2d06eff4112a7707dbef6ceea76d2684707","f51c2abd01bb55990a6c5758c8ec34ea7802952c40c30c3941c75eea15539842","8baa5d0febc68db886c40bf341e5c90dc215a90cd64552e47e8184be6b7e3358","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","6aee496bf0ecfbf6731aa8cca32f4b6e92cdc0a444911a7d88410408a45ecc5d","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","105fa3d1b286795f9ac1b82f5a737db303dfe65ebc9830c1938a2bbe538a861f","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67",{"version":"40bbeaccf39d6ad00da30e96553f0c4aa1b8a87535393c7fdf939170b639c95d","affectsGlobalScope":true},"2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","bdc18dd47aea9977e419a8e03e7e5d04ed8cf8265e014d8788848b76b969cbba","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","7429e36c7e860a83e1166d6f0977fa4938b7a7a346255169a678939594394375","da297c98a5a86092b19aed23ddc61f5d0e64bc2fa83dc606a89d4e54dc6ec5a3",{"version":"c856e68ae3c730c5b59b0a5c0c8e951596ae79da7d29c9a1b1a8257109f3f3cc","affectsGlobalScope":true},"e65fca93c26b09681d33dad7b3af32ae42bf0d114d859671ffed30a92691439c","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1"],"options":{"composite":true,"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":1,"module":99,"outDir":"./dist","rootDir":"./src","skipDefaultLibCheck":true,"skipLibCheck":false,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":3},"fileIdsList":[[106,159,208,209,210],[159,208,209,210],[72,159,208,209,210],[70,159,208,209,210],[67,68,69,70,71,74,75,76,77,78,79,80,81,159,208,209,210],[66,159,208,209,210],[73,159,208,209,210],[67,68,69,159,208,209,210],[67,68,159,208,209,210],[70,71,73,159,208,209,210],[68,159,208,209,210],[90,159,208,209,210],[88,89,159,208,209,210],[53,88,159,208,209,210],[82,83,84,159,208,209,210],[104,159,208,209,210],[106,107,108,109,110,159,208,209,210],[106,108,159,208,209,210],[147,159,166,208,209,210],[159,168,208,209,210],[104,159,172,208,209,210],[104,159,170,171,208,209,210],[129,159,166,175,208,209,210],[130,159,166,208,209,210],[159,178,208,209,210],[159,186,208,209,210],[159,180,186,208,209,210],[159,181,182,183,184,185,208,209,210],[159,189,208,209,210],[159,193,208,209,210],[159,194,208,209,210],[159,200,203,208,209,210],[129,159,161,166,206,207,209,210],[159,208,209],[159,208,210],[159,208,209,210,213,215,216,217,218,219,220,221,222,223,224,225],[159,208,209,210,213,214,216,217,218,219,220,221,222,223,224,225],[159,208,209,210,214,215,216,217,218,219,220,221,222,223,224,225],[159,208,209,210,213,214,215,217,218,219,220,221,222,223,224,225],[159,208,209,210,213,214,215,216,218,219,220,221,222,223,224,225],[159,208,209,210,213,214,215,216,217,219,220,221,222,223,224,225],[159,208,209,210,213,214,215,216,217,218,220,221,222,223,224,225],[159,208,209,210,213,214,215,216,217,218,219,221,222,223,224,225],[159,208,209,210,213,214,215,216,217,218,219,220,222,223,224,225],[159,208,209,210,213,214,215,216,217,218,219,220,221,223,224,225],[159,208,209,210,213,214,215,216,217,218,219,220,221,222,224,225],[159,208,209,210,213,214,215,216,217,218,219,220,221,222,223,225],[159,208,209,210,213,214,215,216,217,218,219,220,221,222,223,224],[132,158,159,166,208,209,210,229,230],[132,147,159,166,208,209,210],[113,159,208,209,210],[116,159,208,209,210],[117,122,150,159,208,209,210],[118,129,130,137,147,158,159,208,209,210],[118,119,129,137,159,208,209,210],[120,159,208,209,210],[121,122,130,138,159,208,209,210],[122,147,155,159,208,209,210],[123,125,129,137,159,208,209,210],[124,159,208,209,210],[125,126,159,208,209,210],[129,159,208,209,210],[127,129,159,208,209,210],[129,130,131,147,158,159,208,209,210],[129,130,131,144,147,150,159,208,209,210],[159,163,208,209,210],[125,132,137,147,158,159,208,209,210],[129,130,132,133,137,147,155,158,159,208,209,210],[132,134,147,155,158,159,208,209,210],[113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,208,209,210],[129,135,159,208,209,210],[136,158,159,208,209,210],[125,129,137,147,159,208,209,210],[138,159,208,209,210],[139,159,208,209,210],[116,140,159,208,209,210],[141,157,159,163,208,209,210],[142,159,208,209,210],[143,159,208,209,210],[129,144,145,159,208,209,210],[144,146,159,161,208,209,210],[117,129,147,148,149,150,159,208,209,210],[117,147,149,159,208,209,210],[147,148,159,208,209,210],[150,159,208,209,210],[151,159,208,209,210],[129,153,154,159,208,209,210],[153,154,159,208,209,210],[122,137,147,155,159,208,209,210],[156,159,208,209,210],[137,157,159,208,209,210],[117,132,143,158,159,208,209,210],[122,159,208,209,210],[147,159,160,208,209,210],[159,161,208,209,210],[159,162,208,209,210],[117,122,129,131,140,147,158,159,161,163,208,209,210],[147,159,164,208,209,210],[159,205,208,209,210],[159,206,208,209,210],[53,159,208,209,210],[53,84,159,208,209,210],[53,159,186,208,209,210,238],[53,159,186,208,209,210],[49,50,51,52,159,208,209,210],[159,208,209,210,244,283],[159,208,209,210,244,268,283],[159,208,209,210,283],[159,208,209,210,244],[159,208,209,210,244,269,283],[159,208,209,210,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282],[159,208,209,210,269,283],[159,204,208,209,210],[159,208,209,210,289],[122,159,166,208,209,210,284,289],[122,159,166,208,209,210,287,289,290,291,292],[159,208,209,210,295],[159,196,202,208,209,210],[159,200,208,209,210],[159,197,201,208,209,210],[159,199,208,209,210],[159,198,208,209,210],[53,57,58,85,159,208,209,210],[47,53,59,85,159,208,209,210],[47,53,57,159,208,209,210],[47,53,58,159,208,209,210],[61,91,159,208,209,210],[48,63,91,159,208,209,210],[48,64,91,159,208,209,210],[62,91,159,208,209,210],[53,60,159,208,209,210],[47,48,53,60,61,159,208,209,210],[47,48,53,60,62,159,208,209,210],[47,48,58,59,61,62,63,64,159,208,209,210],[48,54,55,56,57,159,208,209,210],[48,56,159,208,209,210],[48,55,159,208,209,210],[48,54,159,208,209,210],[47,54,55,56,159,208,209,210],[47,48,159,208,209,210],[47,53,59,159,208,209,210],[47,53,57],[47,53],[47],[47,48,58,59,61,62,63,64]],"referencedMap":[[108,1],[106,2],[196,2],[73,3],[72,2],[80,2],[77,2],[76,2],[71,4],[82,5],[67,6],[78,7],[70,8],[69,9],[79,2],[74,10],[81,2],[75,11],[68,2],[91,12],[90,13],[88,2],[89,14],[85,15],[105,16],[66,2],[111,17],[107,1],[109,18],[110,1],[112,2],[167,19],[169,20],[173,21],[170,2],[172,22],[171,2],[174,16],[104,2],[176,23],[177,24],[179,25],[180,2],[184,26],[185,26],[181,27],[182,27],[183,27],[186,28],[187,2],[188,2],[190,29],[189,2],[191,2],[192,2],[193,2],[194,30],[195,31],[204,32],[208,33],[210,34],[209,35],[211,2],[212,2],[214,36],[215,37],[213,38],[216,39],[217,40],[218,41],[219,42],[220,43],[221,44],[222,45],[223,46],[224,47],[225,48],[226,25],[175,2],[227,2],[168,2],[228,25],[230,2],[231,49],[229,50],[113,51],[114,51],[116,52],[117,53],[118,54],[119,55],[120,56],[121,57],[122,58],[123,59],[124,60],[125,61],[126,61],[128,62],[127,63],[129,62],[130,64],[131,65],[115,66],[165,2],[132,67],[133,68],[134,69],[166,70],[135,71],[136,72],[137,73],[138,74],[139,75],[140,76],[141,77],[142,78],[143,79],[144,80],[145,80],[146,81],[147,82],[149,83],[148,84],[150,85],[151,86],[152,2],[153,87],[154,88],[155,89],[156,90],[157,91],[158,92],[159,93],[160,94],[161,95],[162,96],[163,97],[164,98],[232,2],[233,62],[234,2],[206,99],[205,100],[235,2],[236,2],[51,2],[237,2],[83,101],[84,102],[239,103],[238,104],[240,101],[241,101],[49,2],[53,105],[242,2],[243,2],[52,2],[268,106],[269,107],[244,108],[247,108],[266,106],[267,106],[257,106],[256,109],[254,106],[249,106],[262,106],[260,106],[264,106],[248,106],[261,106],[265,106],[250,106],[251,106],[263,106],[245,106],[252,106],[253,106],[255,106],[259,106],[270,110],[258,106],[246,106],[283,111],[282,2],[277,110],[279,112],[278,110],[271,110],[272,110],[274,110],[276,110],[280,112],[281,112],[273,112],[275,112],[284,2],[285,2],[286,2],[287,2],[288,113],[207,2],[290,114],[178,2],[294,2],[292,115],[293,116],[295,2],[296,117],[291,2],[197,2],[50,2],[203,118],[201,119],[202,120],[200,121],[199,122],[198,2],[289,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[46,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[11,2],[10,2],[86,123],[87,124],[58,125],[59,126],[92,127],[93,128],[94,129],[95,130],[60,101],[61,131],[63,132],[64,133],[62,131],[65,134],[97,135],[98,136],[99,137],[100,138],[57,139],[56,140],[55,140],[48,2],[54,140],[47,2],[96,141],[101,101],[102,2],[103,2]],"exportedModulesMap":[[108,1],[106,2],[196,2],[73,3],[72,2],[80,2],[77,2],[76,2],[71,4],[82,5],[67,6],[78,7],[70,8],[69,9],[79,2],[74,10],[81,2],[75,11],[68,2],[91,12],[90,13],[88,2],[89,14],[85,15],[105,16],[66,2],[111,17],[107,1],[109,18],[110,1],[112,2],[167,19],[169,20],[173,21],[170,2],[172,22],[171,2],[174,16],[104,2],[176,23],[177,24],[179,25],[180,2],[184,26],[185,26],[181,27],[182,27],[183,27],[186,28],[187,2],[188,2],[190,29],[189,2],[191,2],[192,2],[193,2],[194,30],[195,31],[204,32],[208,33],[210,34],[209,35],[211,2],[212,2],[214,36],[215,37],[213,38],[216,39],[217,40],[218,41],[219,42],[220,43],[221,44],[222,45],[223,46],[224,47],[225,48],[226,25],[175,2],[227,2],[168,2],[228,25],[230,2],[231,49],[229,50],[113,51],[114,51],[116,52],[117,53],[118,54],[119,55],[120,56],[121,57],[122,58],[123,59],[124,60],[125,61],[126,61],[128,62],[127,63],[129,62],[130,64],[131,65],[115,66],[165,2],[132,67],[133,68],[134,69],[166,70],[135,71],[136,72],[137,73],[138,74],[139,75],[140,76],[141,77],[142,78],[143,79],[144,80],[145,80],[146,81],[147,82],[149,83],[148,84],[150,85],[151,86],[152,2],[153,87],[154,88],[155,89],[156,90],[157,91],[158,92],[159,93],[160,94],[161,95],[162,96],[163,97],[164,98],[232,2],[233,62],[234,2],[206,99],[205,100],[235,2],[236,2],[51,2],[237,2],[83,101],[84,102],[239,103],[238,104],[240,101],[241,101],[49,2],[53,105],[242,2],[243,2],[52,2],[268,106],[269,107],[244,108],[247,108],[266,106],[267,106],[257,106],[256,109],[254,106],[249,106],[262,106],[260,106],[264,106],[248,106],[261,106],[265,106],[250,106],[251,106],[263,106],[245,106],[252,106],[253,106],[255,106],[259,106],[270,110],[258,106],[246,106],[283,111],[282,2],[277,110],[279,112],[278,110],[271,110],[272,110],[274,110],[276,110],[280,112],[281,112],[273,112],[275,112],[284,2],[285,2],[286,2],[287,2],[288,113],[207,2],[290,114],[178,2],[294,2],[292,115],[293,116],[295,2],[296,117],[291,2],[197,2],[50,2],[203,118],[201,119],[202,120],[200,121],[199,122],[198,2],[289,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[46,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[11,2],[10,2],[58,142],[59,143],[63,144],[64,144],[65,145],[57,144],[56,144],[55,144],[54,144],[101,101],[102,2],[103,2]],"semanticDiagnosticsPerFile":[108,106,196,73,72,80,77,76,71,82,67,78,70,69,79,74,81,75,68,91,90,88,89,85,105,66,111,107,109,110,112,167,169,173,170,172,171,174,104,176,177,179,180,184,185,181,182,183,186,187,188,190,189,191,192,193,194,195,204,208,210,209,211,212,214,215,213,216,217,218,219,220,221,222,223,224,225,226,175,227,168,228,230,231,229,113,114,116,117,118,119,120,121,122,123,124,125,126,128,127,129,130,131,115,165,132,133,134,166,135,136,137,138,139,140,141,142,143,144,145,146,147,149,148,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,232,233,234,206,205,235,236,51,237,83,84,239,238,240,241,49,53,242,243,52,268,269,244,247,266,267,257,256,254,249,262,260,264,248,261,265,250,251,263,245,252,253,255,259,270,258,246,283,282,277,279,278,271,272,274,276,280,281,273,275,284,285,286,287,288,207,290,178,294,292,293,295,296,291,197,50,203,201,202,200,199,198,289,8,9,13,12,2,14,15,16,17,18,19,20,21,3,46,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,1,45,11,10,86,87,58,59,92,93,94,95,60,61,63,64,62,65,97,98,99,100,57,56,55,48,54,47,96,101,102,103],"latestChangedDtsFile":"./dist/util/__tests__/timeout.test.d.ts"},"version":"4.9.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.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.es2016.full.d.ts","./src/util/types.ts","./src/util/policies.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../../node_modules/@types/react/index.d.ts","./src/util/timeout.ts","./src/util/interval.ts","./src/util/animation-frame.ts","./src/util/action-scheduler.ts","./src/components/action-scheduler-provider.ts","./src/components/with-action-scheduler.tsx","./src/hooks/internal/use-updating-ref.ts","./src/hooks/use-interval.ts","./src/hooks/use-timeout.ts","./src/hooks/use-scheduled-interval.ts","./src/hooks/use-scheduled-timeout.ts","./src/index.ts","../../node_modules/@types/aria-query/index.d.ts","../../node_modules/@testing-library/dom/types/matches.d.ts","../../node_modules/@testing-library/dom/types/wait-for.d.ts","../../node_modules/@testing-library/dom/types/query-helpers.d.ts","../../node_modules/@testing-library/dom/types/queries.d.ts","../../node_modules/@testing-library/dom/types/get-queries-for-element.d.ts","../../node_modules/@testing-library/dom/node_modules/pretty-format/build/types.d.ts","../../node_modules/@testing-library/dom/node_modules/pretty-format/build/index.d.ts","../../node_modules/@testing-library/dom/types/screen.d.ts","../../node_modules/@testing-library/dom/types/wait-for-element-to-be-removed.d.ts","../../node_modules/@testing-library/dom/types/get-node-text.d.ts","../../node_modules/@testing-library/dom/types/events.d.ts","../../node_modules/@testing-library/dom/types/pretty-dom.d.ts","../../node_modules/@testing-library/dom/types/role-helpers.d.ts","../../node_modules/@testing-library/dom/types/config.d.ts","../../node_modules/@testing-library/dom/types/suggestions.d.ts","../../node_modules/@testing-library/dom/types/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-dom/test-utils/index.d.ts","../../node_modules/@testing-library/react/types/index.d.ts","./src/components/__tests__/action-scheduler-provider.test.tsx","./src/components/__tests__/with-action-scheduler.test.tsx","../../node_modules/@testing-library/react-hooks/lib/types/index.d.ts","../../node_modules/@testing-library/react-hooks/lib/types/react.d.ts","../../node_modules/@testing-library/react-hooks/lib/pure.d.ts","../../node_modules/@testing-library/react-hooks/lib/index.d.ts","./src/hooks/__tests__/use-interval.test.ts","./src/hooks/__tests__/use-scheduled-interval.test.ts","./src/hooks/__tests__/use-scheduled-timeout.test.ts","./src/hooks/__tests__/use-timeout.test.ts","./src/util/types.typestest.tsx","./src/util/__tests__/action-scheduler.test.ts","./src/util/__tests__/animation-frame.test.ts","./src/util/__tests__/interval.test.ts","./src/util/__tests__/timeout.test.ts","./types/aphrodite.d.ts","./types/matchers.d.ts","./types/utility.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/acorn/index.d.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/body-parser/index.d.ts","../../node_modules/@types/color-name/index.d.ts","../../node_modules/@types/concat-stream/index.d.ts","../../node_modules/@types/cross-spawn/index.d.ts","../../node_modules/@types/ms/index.d.ts","../../node_modules/@types/debug/index.d.ts","../../node_modules/@types/detect-port/index.d.ts","../../node_modules/@types/doctrine/index.d.ts","../../node_modules/@types/ejs/index.d.ts","../../node_modules/@types/emscripten/index.d.ts","../../node_modules/@types/escodegen/index.d.ts","../../node_modules/@types/estree-jsx/index.d.ts","../../node_modules/@types/send/node_modules/@types/mime/index.d.ts","../../node_modules/@types/send/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/Mime.d.ts","../../node_modules/@types/mime/index.d.ts","../../node_modules/@types/http-errors/index.d.ts","../../node_modules/@types/serve-static/index.d.ts","../../node_modules/@types/express/index.d.ts","../../node_modules/@types/find-cache-dir/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/history/DOMUtils.d.ts","../../node_modules/@types/history/createBrowserHistory.d.ts","../../node_modules/@types/history/createHashHistory.d.ts","../../node_modules/@types/history/createMemoryHistory.d.ts","../../node_modules/@types/history/LocationUtils.d.ts","../../node_modules/@types/history/PathUtils.d.ts","../../node_modules/@types/history/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/is-ci/node_modules/ci-info/index.d.ts","../../node_modules/@types/is-ci/index.d.ts","../../node_modules/@types/is-empty/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/@jest/expect-utils/build/index.d.ts","../../node_modules/chalk/index.d.ts","../../node_modules/pretty-format/node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/pretty-format/node_modules/@jest/schemas/build/index.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/expect/build/index.d.ts","../../node_modules/@types/jest/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/json-schema/index.d.ts","../../node_modules/@types/json5/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/mdast/index.d.ts","../../node_modules/@types/mdx/types.d.ts","../../node_modules/@types/mdx/index.d.ts","../../node_modules/@types/mime-types/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/nlcst/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/prettier/index.d.ts","../../node_modules/@types/pretty-hrtime/index.d.ts","../../node_modules/@types/react-router/index.d.ts","../../node_modules/@types/react-router-dom/index.d.ts","../../node_modules/@types/react-test-renderer/index.d.ts","../../node_modules/@types/react-window/index.d.ts","../../node_modules/@types/resolve/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/supports-color/index.d.ts","../../node_modules/@types/testing-library__jest-dom/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"2dfbb27de6bf0db1018122b054d26cf1fc47bc1979d096aec101b08a42c63b13",{"version":"5f851373b542965970745eac0d0d04191f3f8bd9095bdf86b9c51be757d5179f","signature":"28ae84922b6341a520ca9f87c018be7a521ef8987af10c3f458ec495b12ea5df"},{"version":"d34efeb4dd056e31cc702393f82cffb08628c468880aa9a8dce70d25c2d5bb0e","signature":"ff3ea918663dbe13e8f55f34403ad8bfc0f8d9e63a70a648b0f36cc19a6de6e7"},{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"5b1d4ebd62d975c7d3826202f8fac290bac0bae6e04d9e84d1707d7047e108df","a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"51da54ddc920585f6f7ad98b6ba9916dfbb42ce4b8a872fd4f9a4cc93491f404","affectsGlobalScope":true},{"version":"0f2bbd5f9becdb838473f140f306f7e6dd5321f4eb512d7d755ec9a7be342889","signature":"b58b8d895fcec42dc3397ad91e644bc6be04c0d026392b7bf0f53e9d963236de"},{"version":"4f6517629fa92f2670fe148f2abdd55df14baedf7709c7759294b1eae40cba86","signature":"4cc8d6e64dee7aec43d15bf1f49876356937b61efcac74a134c20efef7c0c58e"},{"version":"426b185b73d79cb3a25bf3b323a16a8559908c5d17a2cbe353529698b9113f99","signature":"0c166462686325fe6cadcb364cb8a0ae2c452be312087aa5d8fbfbd73cbdb351"},{"version":"115f03c593ae209d02b9a67bdf9bd7c3a9cf6da6a6d28b54574bd5255c8480fa","signature":"66b5d5fb1e982333346fd4c9fde5f55c350bb3eec0d486436d2fd8024a9cda4b"},{"version":"0ae154b5f8f92e8f5c7c9184051aacacf451474784eb0cc5436279124bbe18f6","signature":"db439c7d63de2fb0e8b142f148a05cc5f0e0e954d2264f71742a15b04836f989"},{"version":"c12dc0e959cecbc387493654a0bc2a3370f400552ab5b9f6b1685ad5b8cf7f5b","signature":"b578532a1eb46cc6322541ef9a7523d904f3831a6e77b85596d04090902740ed"},{"version":"7dd7fe2e0035f40f0a6de33d7e5ed2c115d0f2a7986122b3def077893620fdb0","signature":"cf4df4925a52635eeba3103dc32d7ceba565efac0cc0b951456277c4cd332275"},{"version":"de10b07a4542cd1338bef34a2c1b593a43765731bd64afcc94160f219b79ed1b","signature":"2d695e879a6c8dd74ede7081e7bd7703a5c2d17fa25ebdb82ab6976fc02ebd37"},{"version":"d78eb3ce58eab852d6ff7317fb09bac898d593d23e6e59d40015fdc710bc1502","signature":"e542c8ff13b66697a2269274dac1ef6cb61acebbeeed133484b6777091173105"},{"version":"1bb7a40b5b1ee64d701aace884c8777fd05921c1c1e060b2821a3cefd70bf477","signature":"6e2a7bbd91786967af5fe0a9623768290f05765cbedef3bffb12342dce32a03e"},{"version":"fee8009b9cdd429c2b00864e72b0ed1fc1f5299149085687b97e3c00f6ccf60e","signature":"fee6c9d76345eef17734a2f743b1a679e269e11216f7d57cd33597005e6b6251"},{"version":"501954d565b63117d8f61d2021fc464e584df95cdad3888a77537f8bda55d8d1","signature":"d665463a188fa5bb07ed3ac3c900234d26d42a63c4aa7c917e9d543fad7c2a45"},"5024433f8da3a7968f6d12cffd32f2cefae4442a9ad1c965fa2d23342338b700","f70bc756d933cc38dc603331a4b5c8dee89e1e1fb956cfb7a6e04ebb4c008091","8387ec1601cf6b8948672537cf8d430431ba0d87b1f9537b4597c1ab8d3ade5b","d16f1c460b1ca9158e030fdf3641e1de11135e0c7169d3e8cf17cc4cc35d5e64","fbc350d1cb7543cb75fdd5f3895ab9ac0322268e1bd6a43417565786044424f3","e3c5ad476eb2fca8505aee5bdfdf9bf11760df5d0f9545db23f12a5c4d72a718","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","d0570ce419fb38287e7b39c910b468becb5b2278cf33b1000a3d3e82a46ecae2","3aca7f4260dad9dcc0a0333654cb3cde6664d34a553ec06c953bce11151764d7","a0a6f0095f25f08a7129bc4d7cb8438039ec422dc341218d274e1e5131115988","cb3aaf306b5ff2ec718359e2e2244263c0b364c35759b1467c16caa113ccb849","45785e608b3d380c79e21957a6d1467e1206ac0281644e43e8ed6498808ace72","a3ce619711ff1bcdaaf4b5187d1e3f84e76064909a7c7ecb2e2f404f145b7b5c","2a90177ebaef25de89351de964c2c601ab54d6e3a157cba60d9cd3eaf5a5ee1a","82200e963d3c767976a5a9f41ecf8c65eca14a6b33dcbe00214fcbe959698c46","b4966c503c08bbd9e834037a8ab60e5f53c5fd1092e8873c4a1c344806acdab2","b567296d1820a1e50b6522c99a4f272c70eb2cba690da6e64a25635b70b1383f","b72fe4260471b06163a05df5228c09b76472b09ea315b7a2df52343181fe906f","852babd1fbe53723547566ba74312e48f9ecd05241a9266292e7058c34016ce8",{"version":"c3b91779d40d501c143f1f39b649ece6d68a935022cc433826d7e2458cb5b02c","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"6ddb568f0082a0435cfc3673b9bc95b229b3dfdcefa076535abec01e32ce4ded","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"b099d8d62ff020ecdb2ca181a96818b1a23e8de85ccbab6a81df9ff24ebcd615","61337090bd8136b17c5e5657051ea3226ea3ad28a73152be5b905f6c1f44bc0e","85e9ae257ffaf39f82090b436013b4398157f6a3f205e2e995c6977fa69356d8","15f22e0d2b12a74931641f1eea436a198bec2a710aa6a5a8402b1b01a698eb0c",{"version":"d5390a4aecac380f774c05ba454c19a340ebfd714c75fddaa0d95250be62010c","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"d6f9f8e36e9c17f1169866cfcde201d51359da55763f034c73c6824061e0dfea","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"e3c75f973e9df1b9853f6d84e7286791d279b71d0b43861dc97645630c19778e","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"ea97d6e9b77419d996b8ec41c36c78f8b47aca403d067b21af593ba256933666","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"060356c24ea0140366c0d0930b31e812a41898489f9b1b0eaa1ee063ee555aea","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"40a7610b2b7994d057fe4c082bde4e22bef9cb72163a60dfa883efbbd2bca1e5","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"85fb3936ea12ca997a5b68662f9fc6a209aa4dae0e0a9a6b9acc221516a98d1f","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"ce06cc1b887ba76c7c558a0b25e6c69ed4d3980016fbb79b17abb02abdb681c0","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"9d8014c9d5fd4987ed8d576ef3247204cd07dcfdec10e87fa819f847d0e18d32","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"676b8fabad5b09ecf15564ce90e183b1204d75dbe6647addb19ecdff29d52f1a",{"version":"9be348abf5d43091876a86f9acf23927a240915f8fc6d51155dbe5bdb69ef229","affectsGlobalScope":true},{"version":"0edf50909110994834718a7582b9ceedf20b14aa9fde0351eb2ac2cf5f430feb","affectsGlobalScope":true},"946bd1737d9412395a8f24414c70f18660b84a75a12b0b448e6eb1a2161d06dd","3777eb752cef9aa8dd35bb997145413310008aa54ec44766de81a7ad891526cd","a20fc1fcd9cd7c2b79d5f00d14802c1d58c3848e09ee4f84b350591af88b7636","19fb2161edf60fbe73ee3650c1cee889df0525ed852eff2d5fa6e5480c132ae3","b4f76b34637d79cefad486127115fed843762c69512d7101b7096e1293699679","3e0a34f7207431d967dc32d593d1cda0c23975e9484bc8895b39d96ffca4a0d8","44d81327b8fbb2d7ca0701f5b7bb73e48036eb99a87356acf95f19ed96e907aa","b6ddf3a46ccfa4441d8be84d2e9bf3087573c48804196faedbd4a25b60631beb","7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true},"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f",{"version":"17a1140b90821c2c8d7064c9fc7598797c385714e6aa88b85e30b1159af8dc9b","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","dab86d9604fe40854ef3c0a6f9e8948873dc3509213418e5e457f410fd11200f","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"2c45b35f4850881ab132f80d3cb51e8a359a4d8fafdc5ff2401d260dc27862f4","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","09326ae5f7e3d49be5cd9ea00eb814770e71870a438faa2efd8bdd9b4db21320",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"ed2a670a77a1b80653c5bde2d813b0ab2e92872cc9b2b611ce11050b95139be6","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","0bcda522a4bb74c79e11a2c932db88eaca087a6fb11eb3fda4aaa4d655b1783e","5e3a55837aa1f42af2d2334c9b750f59f5f50a2205471875f5dd6aadc3e49ddb","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","4b4c4c74c41b52cada66c85638633d2b0fe7c43445daf877cfddb310d3f5e998","febcc45f9517827496659c229a21b058831eef4cf9b71b77fd9a364ae12c3b9e","de8877483ce1e67bced3ad1f4ac877fd5066f8465ab6a9e8b716662d727553e5",{"version":"3f547f989aa9c12dc888ae25c4afc076eb442f681ba17f50924642fe29c01da0","affectsGlobalScope":true},"9dffc5c0859e5aeba5e40b079d2f5e8047bdff91d0b3477d77b6fb66ee76c99d","f54243828d27a24d59ebf25740dfe6e7dff3931723f8ce7b658cdbe766f89da9","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","aad5ffa61406b8e19524738fcf0e6fda8b3485bba98626268fdf252d1b2b630a","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"352fc8497a30bc806d7defa0043d85802e5f35a7688731ee9a21456f5cb32a94","affectsGlobalScope":true},"5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7","951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e","f463d61cf39c3a6a5f96cdf7adfdb72a0b1d663f7b5d5b6dd042adba835430c2","f7a9cb83c8fbc081a8b605880d191e0d0527cde2c1b2b2b623beca8f0203a2cd","43cdd474c5aa3340da4816bb8f1ae7f3b1bcf9e70d997afc36a0f2c432378c84","19f1159e1fa24300e2eaf72cb53f0815f5879ec53cad3c606802f0c55f0917e9","963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","ac295e0d29ca135d7dca2069a6e57943ed18800754dbe8fcb3974fb9ce497c3c",{"version":"271cde49dfd9b398ccc91bb3aaa43854cf76f4d14e10fed91cbac649aa6cbc63","affectsGlobalScope":true},"2bcecd31f1b4281710c666843fc55133a0ee25b143e59f35f49c62e168123f4b","a6273756fa05f794b64fe1aff45f4371d444f51ed0257f9364a8b25f3501915d","9c4e644fe9bf08d93c93bd892705842189fe345163f8896849d5964d21b56b78","25d91fb9ed77a828cc6c7a863236fb712dafcd52f816eec481bd0c1f589f4404","4cd14cea22eed1bfb0dc76183e56989f897ac5b14c0e2a819e5162eafdcfe243","8d32432f68ca4ce93ad717823976f2db2add94c70c19602bf87ee67fe51df48b","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","6a61697f65beb341884485c695894ee1876a45c1a7190d76cb4a57a679c9d5b8","a3e5b8b86e7bd38d9afdc294875c4445c535319e288d3a13c1e2e41f9af934f2","d45d40831ccbd547e3f4ae8f326420b9e454dd27fa970f417c8e94a23e93db29","9e951ec338c4232d611552a1be7b4ecec79a8c2307a893ce39701316fe2374bd","70c61ff569aabdf2b36220da6c06caaa27e45cd7acac81a1966ab4ee2eadc4f2","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","6c1e688f95fcaf53b1e41c0fdadf2c1cfc96fa924eaf7f9fdb60f96deb0a4986","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","db25694be959314fd1e868d72e567746db1db9e2001fae545d12d2a8c1bba1b8","43883cf3635bb1846cbdc6c363787b76227677388c74f7313e3f0edb380840fa","2d47012580f859dae201d2eef898a416bdae719dffc087dfd06aefe3de2f9c8d","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","2cec1a31729b9b01e9294c33fc9425d336eff067282809761ad2e74425d6d2a5",{"version":"5bc4bb5796ce660d9869477983aac87734e19fecd1ad60fb0b13ffe1f1a450ed","affectsGlobalScope":true},"fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd20dfa2434a61a87e3fa9450f9de2ed2c365ea43b17b34ac6616d90d9681381","389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3",{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","bb5c385d6290f1ad2da7576e186810f23dce6d6bc7fb38ad565a4eb8cfed3541","6571f33cd3c23ee70fb48839c9a7486381cd3f439e17d97d10fc908e41468052","c757372a092924f5c16eaf11a1475b80b95bb4dae49fe3242d2ad908f97d5abe","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","1b23c2aae14c17f361f6fcef69be7a298f47c27724c9a1f891ea52eeea0a9f7f","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","626bccaba2f61f03abe558a39501631565389a748bc47dd52b305c80176333c1","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","1d4bc73751d6ec6285331d1ca378904f55d9e5e8aeaa69bc45b675c3df83e778","8017277c3843df85296d8730f9edf097d68d7d5f9bc9d8124fcacf17ecfd487e","408cc7117448f4994a1f50468648a2d06eff4112a7707dbef6ceea76d2684707","f51c2abd01bb55990a6c5758c8ec34ea7802952c40c30c3941c75eea15539842","8baa5d0febc68db886c40bf341e5c90dc215a90cd64552e47e8184be6b7e3358","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","6aee496bf0ecfbf6731aa8cca32f4b6e92cdc0a444911a7d88410408a45ecc5d","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","105fa3d1b286795f9ac1b82f5a737db303dfe65ebc9830c1938a2bbe538a861f",{"version":"40bbeaccf39d6ad00da30e96553f0c4aa1b8a87535393c7fdf939170b639c95d","affectsGlobalScope":true},"e65fca93c26b09681d33dad7b3af32ae42bf0d114d859671ffed30a92691439c","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1"],"options":{"composite":true,"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":1,"module":99,"outDir":"./dist","rootDir":"./src","skipDefaultLibCheck":true,"skipLibCheck":false,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":3},"fileIdsList":[[106,158,221,222,223],[158,221,222,223],[72,158,221,222,223],[70,158,221,222,223],[67,68,69,70,71,74,75,76,77,78,79,80,81,158,221,222,223],[66,158,221,222,223],[73,158,221,222,223],[67,68,69,158,221,222,223],[67,68,158,221,222,223],[70,71,73,158,221,222,223],[68,158,221,222,223],[90,158,221,222,223],[88,89,158,221,222,223],[53,88,158,221,222,223],[82,83,84,158,221,222,223],[104,158,221,222,223],[106,107,108,109,110,158,221,222,223],[106,108,158,221,222,223],[131,158,165,166,221,222,223],[146,158,165,221,222,223],[131,158,165,221,222,223],[117,158,165,221,222,223],[158,171,221,222,223],[128,131,158,165,180,181,182,221,222,223],[158,167,182,183,187,221,222,223],[128,129,158,165,190,221,222,223],[129,158,165,221,222,223],[158,193,221,222,223],[158,201,221,222,223],[158,195,201,221,222,223],[158,196,197,198,199,200,221,222,223],[158,203,221,222,223],[158,206,221,222,223],[158,207,221,222,223],[158,213,216,221,222,223],[128,158,160,165,219,220,222,223],[158,221,222],[158,221,223],[158,221,222,223,226,228,229,230,231,232,233,234,235,236,237,238],[158,221,222,223,226,227,229,230,231,232,233,234,235,236,237,238],[158,221,222,223,227,228,229,230,231,232,233,234,235,236,237,238],[158,221,222,223,226,227,228,230,231,232,233,234,235,236,237,238],[158,221,222,223,226,227,228,229,231,232,233,234,235,236,237,238],[158,221,222,223,226,227,228,229,230,232,233,234,235,236,237,238],[158,221,222,223,226,227,228,229,230,231,233,234,235,236,237,238],[158,221,222,223,226,227,228,229,230,231,232,234,235,236,237,238],[158,221,222,223,226,227,228,229,230,231,232,233,235,236,237,238],[158,221,222,223,226,227,228,229,230,231,232,233,234,236,237,238],[158,221,222,223,226,227,228,229,230,231,232,233,234,235,237,238],[158,221,222,223,226,227,228,229,230,231,232,233,234,235,236,238],[158,221,222,223,226,227,228,229,230,231,232,233,234,235,236,237],[158,221,222,223,240,241],[158,185,221,222,223],[158,184,221,222,223],[131,157,158,165,221,222,223,245,246],[131,146,158,165,221,222,223],[112,158,221,222,223],[115,158,221,222,223],[116,121,149,158,221,222,223],[117,128,129,136,146,157,158,221,222,223],[117,118,128,136,158,221,222,223],[119,158,221,222,223],[120,121,129,137,158,221,222,223],[121,146,154,158,221,222,223],[122,124,128,136,158,221,222,223],[123,158,221,222,223],[124,125,158,221,222,223],[128,158,221,222,223],[126,128,158,221,222,223],[128,129,130,146,157,158,221,222,223],[128,129,130,143,146,149,158,221,222,223],[158,162,221,222,223],[124,131,136,146,157,158,221,222,223],[128,129,131,132,136,146,154,157,158,221,222,223],[131,133,146,154,157,158,221,222,223],[112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,221,222,223],[128,134,158,221,222,223],[135,157,158,221,222,223],[124,128,136,146,158,221,222,223],[137,158,221,222,223],[138,158,221,222,223],[115,139,158,221,222,223],[140,156,158,162,221,222,223],[141,158,221,222,223],[142,158,221,222,223],[128,143,144,158,221,222,223],[143,145,158,160,221,222,223],[116,128,146,147,148,149,158,221,222,223],[116,146,148,158,221,222,223],[146,147,158,221,222,223],[149,158,221,222,223],[150,158,221,222,223],[128,152,153,158,221,222,223],[152,153,158,221,222,223],[121,136,146,154,158,221,222,223],[155,158,221,222,223],[136,156,158,221,222,223],[116,131,142,157,158,221,222,223],[121,158,221,222,223],[146,158,159,221,222,223],[158,160,221,222,223],[158,161,221,222,223],[116,121,128,130,139,146,157,158,160,162,221,222,223],[146,158,163,221,222,223],[158,218,221,222,223],[158,219,221,222,223],[53,158,221,222,223],[53,84,158,221,222,223],[53,158,201,221,222,223,251],[53,158,201,221,222,223],[49,50,51,52,158,221,222,223],[158,221,222,223,257,296],[158,221,222,223,257,281,296],[158,221,222,223,296],[158,221,222,223,257],[158,221,222,223,257,282,296],[158,221,222,223,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295],[158,221,222,223,282,296],[129,146,158,165,179,221,222,223],[131,158,165,185,186,221,222,223],[158,217,221,222,223],[158,221,222,223,300],[158,209,215,221,222,223],[158,213,221,222,223],[158,210,214,221,222,223],[158,212,221,222,223],[158,211,221,222,223],[53,57,58,85,158,221,222,223],[47,53,59,85,158,221,222,223],[47,53,57,158,221,222,223],[47,53,58,158,221,222,223],[61,91,158,221,222,223],[48,63,91,158,221,222,223],[48,64,91,158,221,222,223],[62,91,158,221,222,223],[53,60,158,221,222,223],[47,48,53,60,61,158,221,222,223],[47,48,53,60,62,158,221,222,223],[47,48,58,59,61,62,63,64,158,221,222,223],[48,54,55,56,57,158,221,222,223],[48,56,158,221,222,223],[48,55,158,221,222,223],[48,54,158,221,222,223],[47,54,55,56,158,221,222,223],[47,48,158,221,222,223],[47,53,59,158,221,222,223],[47,53,57],[47,53],[47],[47,48,58,59,61,62,63,64]],"referencedMap":[[108,1],[106,2],[209,2],[73,3],[72,2],[80,2],[77,2],[76,2],[71,4],[82,5],[67,6],[78,7],[70,8],[69,9],[79,2],[74,10],[81,2],[75,11],[68,2],[91,12],[90,13],[88,2],[89,14],[85,15],[105,16],[66,2],[111,17],[107,1],[109,18],[110,1],[167,19],[168,2],[169,20],[166,21],[170,22],[172,23],[173,2],[174,2],[175,2],[176,2],[177,2],[178,16],[104,2],[183,24],[188,25],[189,2],[191,26],[192,27],[194,28],[195,2],[199,29],[200,29],[196,30],[197,30],[198,30],[201,31],[202,2],[186,2],[204,32],[203,2],[205,2],[206,2],[207,33],[208,34],[217,35],[221,36],[223,37],[222,38],[224,2],[225,2],[227,39],[228,40],[226,41],[229,42],[230,43],[231,44],[232,45],[233,46],[234,47],[235,48],[236,49],[237,50],[238,51],[239,28],[241,52],[240,2],[242,2],[184,53],[185,54],[190,2],[243,2],[171,2],[244,28],[246,2],[247,55],[245,56],[112,57],[113,57],[115,58],[116,59],[117,60],[118,61],[119,62],[120,63],[121,64],[122,65],[123,66],[124,67],[125,67],[127,68],[126,69],[128,68],[129,70],[130,71],[114,72],[164,2],[131,73],[132,74],[133,75],[165,76],[134,77],[135,78],[136,79],[137,80],[138,81],[139,82],[140,83],[141,84],[142,85],[143,86],[144,86],[145,87],[146,88],[148,89],[147,90],[149,91],[150,92],[151,2],[152,93],[153,94],[154,95],[155,96],[156,97],[157,98],[158,99],[159,100],[160,101],[161,102],[162,103],[163,104],[248,2],[219,105],[218,106],[249,2],[250,2],[51,2],[182,2],[181,2],[83,107],[84,108],[252,109],[251,110],[253,107],[254,107],[49,2],[53,111],[255,2],[256,2],[52,2],[281,112],[282,113],[257,114],[260,114],[279,112],[280,112],[270,112],[269,115],[267,112],[262,112],[275,112],[273,112],[277,112],[261,112],[274,112],[278,112],[263,112],[264,112],[276,112],[258,112],[265,112],[266,112],[268,112],[272,112],[283,116],[271,112],[259,112],[296,117],[295,2],[290,116],[292,118],[291,116],[284,116],[285,116],[287,116],[289,116],[293,118],[294,118],[286,118],[288,118],[180,119],[179,2],[187,120],[297,2],[298,2],[299,121],[220,2],[193,2],[300,2],[301,122],[210,2],[50,2],[216,123],[214,124],[215,125],[213,126],[212,127],[211,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[46,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[11,2],[10,2],[86,128],[87,129],[58,130],[59,131],[92,132],[93,133],[94,134],[95,135],[60,107],[61,136],[63,137],[64,138],[62,136],[65,139],[97,140],[98,141],[99,142],[100,143],[57,144],[56,145],[55,145],[48,2],[54,145],[47,2],[96,146],[101,107],[102,2],[103,2]],"exportedModulesMap":[[108,1],[106,2],[209,2],[73,3],[72,2],[80,2],[77,2],[76,2],[71,4],[82,5],[67,6],[78,7],[70,8],[69,9],[79,2],[74,10],[81,2],[75,11],[68,2],[91,12],[90,13],[88,2],[89,14],[85,15],[105,16],[66,2],[111,17],[107,1],[109,18],[110,1],[167,19],[168,2],[169,20],[166,21],[170,22],[172,23],[173,2],[174,2],[175,2],[176,2],[177,2],[178,16],[104,2],[183,24],[188,25],[189,2],[191,26],[192,27],[194,28],[195,2],[199,29],[200,29],[196,30],[197,30],[198,30],[201,31],[202,2],[186,2],[204,32],[203,2],[205,2],[206,2],[207,33],[208,34],[217,35],[221,36],[223,37],[222,38],[224,2],[225,2],[227,39],[228,40],[226,41],[229,42],[230,43],[231,44],[232,45],[233,46],[234,47],[235,48],[236,49],[237,50],[238,51],[239,28],[241,52],[240,2],[242,2],[184,53],[185,54],[190,2],[243,2],[171,2],[244,28],[246,2],[247,55],[245,56],[112,57],[113,57],[115,58],[116,59],[117,60],[118,61],[119,62],[120,63],[121,64],[122,65],[123,66],[124,67],[125,67],[127,68],[126,69],[128,68],[129,70],[130,71],[114,72],[164,2],[131,73],[132,74],[133,75],[165,76],[134,77],[135,78],[136,79],[137,80],[138,81],[139,82],[140,83],[141,84],[142,85],[143,86],[144,86],[145,87],[146,88],[148,89],[147,90],[149,91],[150,92],[151,2],[152,93],[153,94],[154,95],[155,96],[156,97],[157,98],[158,99],[159,100],[160,101],[161,102],[162,103],[163,104],[248,2],[219,105],[218,106],[249,2],[250,2],[51,2],[182,2],[181,2],[83,107],[84,108],[252,109],[251,110],[253,107],[254,107],[49,2],[53,111],[255,2],[256,2],[52,2],[281,112],[282,113],[257,114],[260,114],[279,112],[280,112],[270,112],[269,115],[267,112],[262,112],[275,112],[273,112],[277,112],[261,112],[274,112],[278,112],[263,112],[264,112],[276,112],[258,112],[265,112],[266,112],[268,112],[272,112],[283,116],[271,112],[259,112],[296,117],[295,2],[290,116],[292,118],[291,116],[284,116],[285,116],[287,116],[289,116],[293,118],[294,118],[286,118],[288,118],[180,119],[179,2],[187,120],[297,2],[298,2],[299,121],[220,2],[193,2],[300,2],[301,122],[210,2],[50,2],[216,123],[214,124],[215,125],[213,126],[212,127],[211,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[46,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[11,2],[10,2],[58,147],[59,148],[63,149],[64,149],[65,150],[57,149],[56,149],[55,149],[54,149],[101,107],[102,2],[103,2]],"semanticDiagnosticsPerFile":[108,106,209,73,72,80,77,76,71,82,67,78,70,69,79,74,81,75,68,91,90,88,89,85,105,66,111,107,109,110,167,168,169,166,170,172,173,174,175,176,177,178,104,183,188,189,191,192,194,195,199,200,196,197,198,201,202,186,204,203,205,206,207,208,217,221,223,222,224,225,227,228,226,229,230,231,232,233,234,235,236,237,238,239,241,240,242,184,185,190,243,171,244,246,247,245,112,113,115,116,117,118,119,120,121,122,123,124,125,127,126,128,129,130,114,164,131,132,133,165,134,135,136,137,138,139,140,141,142,143,144,145,146,148,147,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,248,219,218,249,250,51,182,181,83,84,252,251,253,254,49,53,255,256,52,281,282,257,260,279,280,270,269,267,262,275,273,277,261,274,278,263,264,276,258,265,266,268,272,283,271,259,296,295,290,292,291,284,285,287,289,293,294,286,288,180,179,187,297,298,299,220,193,300,301,210,50,216,214,215,213,212,211,8,9,13,12,2,14,15,16,17,18,19,20,21,3,46,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,1,45,11,10,86,87,58,59,92,93,94,95,60,61,63,64,62,65,97,98,99,100,57,56,55,48,54,47,96,101,102,103],"latestChangedDtsFile":"./dist/util/__tests__/timeout.test.d.ts"},"version":"4.9.5"}
@@ -1,33 +0,0 @@
1
- /**
2
- * Flowtype definitions for data
3
- * Generated by Flowgen from a Typescript Definition
4
- * Flowgen v1.21.0
5
- * @flow
6
- */
7
- import * as React from "react";
8
- import ActionScheduler from "../util/action-scheduler";
9
- import type { IScheduleActions } from "../util/types";
10
- declare type Props = {|
11
- /**
12
- * A function that, when given an instance of `IScheduleActions` will
13
- * render a `React.Node`.
14
- */
15
- children: (arg1: IScheduleActions) => React.Node,
16
- |};
17
- /**
18
- * A provider component that passes our action scheduling API to its children
19
- * and ensures that all scheduled actions are cleared on unmount.
20
- *
21
- * ```jsx
22
- * <ActionSchedulerProvider>
23
- * {schedule => this.renderThingThatNeedsTimers(schedule)}
24
- * </ActionSchedulerProvider>
25
- * ```
26
- */
27
- declare export default class ActionSchedulerProvider
28
- extends React.Component<Props>
29
- {
30
- componentWillUnmount(): void;
31
- _actionScheduler: ActionScheduler;
32
- render(): React.Node;
33
- }
@@ -1,22 +0,0 @@
1
- /**
2
- * Flowtype definitions for data
3
- * Generated by Flowgen from a Typescript Definition
4
- * Flowgen v1.21.0
5
- * @flow
6
- */
7
- import * as React from "react";
8
- import type { WithActionSchedulerProps } from "../util/types";
9
- declare type WithoutActionScheduler<T> = $Diff<T, { schedule: any }>;
10
- /**
11
- * A higher order component that attaches the given component to an
12
- * `IScheduleActions` instance. Any actions scheduled will automatically be
13
- * cleared on unmount.
14
- * @template The own props of the component being rendered, without
15
- * the additional action scheduler prop. To attach the additional prop to
16
- * these props use the `WithActionScheduler` type.
17
- */
18
- declare export default function withActionScheduler<
19
- Props: WithActionSchedulerProps
20
- >(
21
- WrappedComponent: React.ComponentType<Props>
22
- ): (props: WithoutActionScheduler<Props>) => React$Node;
@@ -1,20 +0,0 @@
1
- /**
2
- * Flowtype definitions for data
3
- * Generated by Flowgen from a Typescript Definition
4
- * Flowgen v1.21.0
5
- * @flow
6
- */
7
- /**
8
- * Returns a ref whose .current value is updated whenever
9
- * the `value` passed to this hook changes.
10
- *
11
- * this is great for values that you want to reference from
12
- * within a useCallback or useEffect event listener, without
13
- * re-triggering the effect when the value changes
14
- * @returns {{|
15
- current: T,
16
- |}}
17
- */
18
- declare export var useUpdatingRef: <T>(value: T) => {|
19
- current: T,
20
- |};
@@ -1,17 +0,0 @@
1
- /**
2
- * Flowtype definitions for data
3
- * Generated by Flowgen from a Typescript Definition
4
- * Flowgen v1.21.0
5
- * @flow
6
- */
7
- /**
8
- * A simple hook for using `setInterval`.
9
- * @param action called every `intervalMs` when `active` is true
10
- * @param intervalMs the duration between calls to `action`
11
- * @param active whether or not the interval is active
12
- */
13
- declare export function useInterval(
14
- action: () => mixed,
15
- intervalMs: number,
16
- active: boolean
17
- ): void;
@@ -1,12 +0,0 @@
1
- /**
2
- * Flowtype definitions for data
3
- * Generated by Flowgen from a Typescript Definition
4
- * Flowgen v1.21.0
5
- * @flow
6
- */
7
- import type { IInterval, Options } from "../util/types";
8
- declare export function useScheduledInterval(
9
- action: () => mixed,
10
- intervalMs: number,
11
- options?: Options
12
- ): IInterval;
@@ -1,12 +0,0 @@
1
- /**
2
- * Flowtype definitions for data
3
- * Generated by Flowgen from a Typescript Definition
4
- * Flowgen v1.21.0
5
- * @flow
6
- */
7
- import type { ITimeout, Options } from "../util/types";
8
- declare export function useScheduledTimeout(
9
- action: () => mixed,
10
- timeoutMs: number,
11
- options?: Options
12
- ): ITimeout;
@@ -1,17 +0,0 @@
1
- /**
2
- * Flowtype definitions for data
3
- * Generated by Flowgen from a Typescript Definition
4
- * Flowgen v1.21.0
5
- * @flow
6
- */
7
- /**
8
- * A simple hook for using `setTimeout`.
9
- * @param action called after `timeoutMs` when `active` is true
10
- * @param timeoutMs the duration after which `action` is called
11
- * @param active whether or not the interval is active
12
- */
13
- declare export function useTimeout(
14
- action: () => mixed,
15
- timeoutMs: number,
16
- active: boolean
17
- ): void;
@@ -1,31 +0,0 @@
1
- /**
2
- * Flowtype definitions for data
3
- * Generated by Flowgen from a Typescript Definition
4
- * Flowgen v1.21.0
5
- * @flow
6
- */
7
- import type {
8
- IAnimationFrame,
9
- IInterval,
10
- IScheduleActions,
11
- ITimeout,
12
- WithActionScheduler,
13
- WithActionSchedulerProps,
14
- WithoutActionScheduler,
15
- } from "./util/types";
16
- export type {
17
- IAnimationFrame,
18
- IInterval,
19
- IScheduleActions,
20
- ITimeout,
21
- WithActionScheduler,
22
- WithActionSchedulerProps,
23
- WithoutActionScheduler,
24
- };
25
- declare export { SchedulePolicy, ClearPolicy } from "./util/policies";
26
- declare export { default as ActionSchedulerProvider } from "./components/action-scheduler-provider";
27
- declare export { default as withActionScheduler } from "./components/with-action-scheduler";
28
- declare export { useInterval } from "./hooks/use-interval";
29
- declare export { useTimeout } from "./hooks/use-timeout";
30
- declare export { useScheduledInterval } from "./hooks/use-scheduled-interval";
31
- declare export { useScheduledTimeout } from "./hooks/use-scheduled-timeout";
@@ -1,38 +0,0 @@
1
- /**
2
- * Flowtype definitions for data
3
- * Generated by Flowgen from a Typescript Definition
4
- * Flowgen v1.21.0
5
- * @flow
6
- */
7
- import type {
8
- IAnimationFrame,
9
- IInterval,
10
- ITimeout,
11
- IScheduleActions,
12
- Options,
13
- } from "./types";
14
-
15
- /**
16
- * Implements the `IScheduleActions` API to provide timeout, interval, and
17
- * animation frame support. This is not intended for direct use, but instead
18
- * is to be used solely by the `ActionSchedulerProvider` to provide an
19
- * `IScheduleActions` instance.
20
- */
21
- declare export default class ActionScheduler implements IScheduleActions {
22
- _disabled: boolean;
23
- _registeredActions: Array<() => void>;
24
- static +NoopAction: {| ...ITimeout, ...IAnimationFrame, ...IInterval |};
25
- timeout(action: () => mixed, period: number, options?: Options): ITimeout;
26
- interval(action: () => mixed, period: number, options?: Options): IInterval;
27
- animationFrame(
28
- action: (arg1: DOMHighResTimeStamp) => void,
29
- options?: Options
30
- ): IAnimationFrame;
31
- clearAll(): void;
32
-
33
- /**
34
- * Prevents this scheduler from creating any additional actions.
35
- * This also clears any pending actions.
36
- */
37
- disable(): void;
38
- }
@@ -1,70 +0,0 @@
1
- /**
2
- * Flowtype definitions for data
3
- * Generated by Flowgen from a Typescript Definition
4
- * Flowgen v1.21.0
5
- * @flow
6
- */
7
- import type { IAnimationFrame, SchedulePolicy, ClearPolicy } from "./types";
8
-
9
- /**
10
- * Encapsulates everything associated with calling requestAnimationFrame/
11
- * cancelAnimationFrame, and managing the lifecycle of that request, including
12
- * the ability to resolve or cancel a pending request action.
13
- * @export
14
- * @class AnimationFrame
15
- * @implements
16
- */
17
- declare export default class AnimationFrame implements IAnimationFrame {
18
- _animationFrameId: number | null | void;
19
- _action: (time: DOMHighResTimeStamp) => mixed;
20
-
21
- /**
22
- * Creates an animation frame request that will invoke the given action.
23
- * The request is not made until set is called.
24
- * @param {(time: DOMHighResTimeStamp) => mixed} action The action to be invoked.
25
- * @param {SchedulePolicy} [schedulePolicy] When SchedulePolicy.Immediately,
26
- * the interval is set immediately on instantiation; otherwise, `set` must be
27
- * called to set the interval.
28
- * Defaults to `SchedulePolicy.Immediately`.
29
- * @memberof AnimationFrame
30
- */
31
- constructor(
32
- action: (time: DOMHighResTimeStamp) => mixed,
33
- schedulePolicy?: SchedulePolicy
34
- ): this;
35
-
36
- /**
37
- * Determine if the request is pending or not.
38
- * @returns {boolean} true if the request is pending, otherwise
39
- * false.
40
- * @memberof AnimationFrame
41
- */
42
- isSet: boolean;
43
-
44
- /**
45
- * Make the animation frame request.
46
- *
47
- * If the request is pending, this cancels that pending request and
48
- * makes the request afresh. If the request is not pending, this
49
- * makes a new request.
50
- * @memberof AnimationFrame
51
- */
52
- set(): void;
53
-
54
- /**
55
- * Clear the pending request.
56
- *
57
- * If the request is pending, this cancels that pending request without
58
- * invoking the action. If no request is pending, this does nothing.
59
- * @param {ClearPolicy} [policy] When ClearPolicy.Resolve, if the request
60
- * was set when called, the request action is invoked after cancelling
61
- * the request; otherwise, the pending action is cancelled.
62
- * Defaults to `ClearPolicy.Cancel`.
63
- * @param {DOMHighResTimeStamp} [time] Timestamp to pass to the action when
64
- * ClearPolicy.Resolve is specified. Ignored when ClearPolicy.Cancel is
65
- * specified.
66
- * @returns {void}
67
- * @memberof AnimationFrame
68
- */
69
- clear(policy?: ClearPolicy, time?: DOMHighResTimeStamp): void;
70
- }
@@ -1,69 +0,0 @@
1
- /**
2
- * Flowtype definitions for data
3
- * Generated by Flowgen from a Typescript Definition
4
- * Flowgen v1.21.0
5
- * @flow
6
- */
7
- import type { IInterval, SchedulePolicy, ClearPolicy } from "./types";
8
-
9
- /**
10
- * Encapsulates everything associated with calling setInterval/clearInterval,
11
- * and managing the lifecycle of that interval. This includes the ability to
12
- * cancel the interval, and knowing if the interval is active.
13
- * @export
14
- * @class Interval
15
- * @implements
16
- */
17
- declare export default class Interval implements IInterval {
18
- _intervalId: number | null | void;
19
- _action: () => mixed;
20
- _intervalMs: number;
21
-
22
- /**
23
- * Creates an interval that will invoke the given action after
24
- * the given period. The interval does not start until set is called.
25
- * @param {() => mixed} action The action to be invoked each time the
26
- * interval period has passed.
27
- * @param {number} intervalMs The interval period.
28
- * @param {SchedulePolicy} [schedulePolicy] When SchedulePolicy.Immediately,
29
- * the interval is set immediately on instantiation; otherwise, `set` must be
30
- * called to set the interval.
31
- * Defaults to `SchedulePolicy.Immediately`.
32
- * @memberof Interval
33
- */
34
- constructor(
35
- action: () => mixed,
36
- intervalMs: number,
37
- schedulePolicy?: SchedulePolicy
38
- ): this;
39
-
40
- /**
41
- * Determine if the interval is active or not.
42
- * @returns {boolean} true if the interval is active, otherwise false.
43
- * @memberof Interval
44
- */
45
- isSet: boolean;
46
-
47
- /**
48
- * Activate the interval.
49
- *
50
- * If the interval is active, this cancels that interval and starts the
51
- * interval afresh. If the interval is not active, this starts it.
52
- * @memberof Interval
53
- */
54
- set(): void;
55
-
56
- /**
57
- * Clear the active interval.
58
- *
59
- * If the interval is active, this cancels that interval. If no interval is
60
- * pending, this does nothing.
61
- * @param {ClearPolicy} [policy] When ClearPolicy.Resolve, if the request
62
- * was set when called, the request action is invoked after cancelling
63
- * the request; otherwise, the pending action is cancelled.
64
- * Defaults to `ClearPolicy.Cancel`.
65
- * @returns {void}
66
- * @memberof Interval
67
- */
68
- clear(policy?: ClearPolicy): void;
69
- }
@@ -1,14 +0,0 @@
1
- /**
2
- * Flowtype definitions for data
3
- * Generated by Flowgen from a Typescript Definition
4
- * Flowgen v1.21.0
5
- * @flow
6
- */
7
- declare export var SchedulePolicy: {|
8
- +Immediately: "schedule-immediately",
9
- +OnDemand: "schedule-on-demand",
10
- |};
11
- declare export var ClearPolicy: {|
12
- +Resolve: "resolve-on-clear",
13
- +Cancel: "cancel-on-clear",
14
- |};
@@ -1,71 +0,0 @@
1
- /**
2
- * Flowtype definitions for data
3
- * Generated by Flowgen from a Typescript Definition
4
- * Flowgen v1.21.0
5
- * @flow
6
- */
7
- import type { ITimeout, SchedulePolicy, ClearPolicy } from "./types";
8
-
9
- /**
10
- * Encapsulates everything associated with calling setTimeout/clearTimeout, and
11
- * managing the lifecycle of that timer, including the ability to resolve or
12
- * cancel a pending timeout action.
13
- * @export
14
- * @class Timeout
15
- * @implements
16
- */
17
- declare export default class Timeout implements ITimeout {
18
- _timeoutId: number | null | void;
19
- _action: () => mixed;
20
- _timeoutMs: number;
21
-
22
- /**
23
- * Creates a timeout that will invoke the given action after
24
- * the given period. The timeout does not start until set is called.
25
- * @param {() => mixed} action The action to be invoked when the timeout
26
- * period has passed.
27
- * @param {number} timeoutMs The timeout period.
28
- * @param {SchedulePolicy} [schedulePolicy] When SchedulePolicy.Immediately,
29
- * the timer is set immediately on instantiation; otherwise, `set` must be
30
- * called to set the timeout.
31
- * Defaults to `SchedulePolicy.Immediately`.
32
- * @memberof Timeout
33
- */
34
- constructor(
35
- action: () => mixed,
36
- timeoutMs: number,
37
- schedulePolicy?: SchedulePolicy
38
- ): this;
39
-
40
- /**
41
- * Determine if the timeout is set or not.
42
- * @returns {boolean} true if the timeout is set (aka pending), otherwise
43
- * false.
44
- * @memberof Timeout
45
- */
46
- isSet: boolean;
47
-
48
- /**
49
- * Set the timeout.
50
- *
51
- * If the timeout is pending, this cancels that pending timeout and
52
- * sets the timeout afresh. If the timeout is not pending, this
53
- * sets a new timeout.
54
- * @memberof Timeout
55
- */
56
- set(): void;
57
-
58
- /**
59
- * Clear the set timeout.
60
- *
61
- * If the timeout is pending, this cancels that pending timeout without
62
- * invoking the action. If no timeout is pending, this does nothing.
63
- * @param {ClearPolicy} [policy] When ClearPolicy.Resolve, if the request
64
- * was set when called, the request action is invoked after cancelling
65
- * the request; otherwise, the pending action is cancelled.
66
- * Defaults to `ClearPolicy.Cancel`.
67
- * @returns {void}
68
- * @memberof Timeout
69
- */
70
- clear(policy?: ClearPolicy): void;
71
- }
@@ -1,232 +0,0 @@
1
- /**
2
- * Flowtype definitions for data
3
- * Generated by Flowgen from a Typescript Definition
4
- * Flowgen v1.21.0
5
- * @flow
6
- */
7
- export type SchedulePolicy = "schedule-immediately" | "schedule-on-demand";
8
- export type ClearPolicy = "resolve-on-clear" | "cancel-on-clear";
9
- /**
10
- * Encapsulates everything associated with calling setTimeout/clearTimeout, and
11
- * managing the lifecycle of that timer, including the ability to resolve or
12
- * cancel a pending timeout action.
13
- * @export
14
- * @interface ITimeout
15
- */
16
- export interface ITimeout {
17
- /**
18
- * Determine if the timeout is set or not.
19
- * @returns {boolean} true if the timeout is set (aka pending), otherwise
20
- * false.
21
- * @memberof ITimeout
22
- */
23
- isSet: boolean;
24
-
25
- /**
26
- * Set the timeout.
27
- *
28
- * If the timeout is pending, this cancels that pending timeout and
29
- * starts the timeout afresh. If the timeout is not pending, this
30
- * starts the timeout.
31
- * @memberof ITimeout
32
- */
33
- set(): void;
34
-
35
- /**
36
- * Clear the set timeout.
37
- *
38
- * If the timeout is pending, this cancels that pending timeout. If no
39
- * timeout is pending, this does nothing.
40
- * @param {ClearPolicy} [policy] When ClearPolicy.Resolve, if the request
41
- * was set when called, the request action is invoked after cancelling
42
- * the request; otherwise, the pending action is cancelled.
43
- * Defaults to `ClearPolicy.Cancel`.
44
- * @memberof ITimeout
45
- */
46
- clear(policy?: ClearPolicy): void;
47
- }
48
- /**
49
- * Encapsulates everything associated with calling setInterval/clearInterval,
50
- * and managing the lifecycle of that interval, including the ability to resolve
51
- * or cancel an active interval.
52
- * @export
53
- * @interface IInterval
54
- */
55
- export interface IInterval {
56
- /**
57
- * Determine if the interval is active or not.
58
- * @returns {boolean} true if the interval is active, otherwise false.
59
- * @memberof IInterval
60
- */
61
- isSet: boolean;
62
-
63
- /**
64
- * Set the interval.
65
- *
66
- * If the interval is active, this cancels that interval and restarts it
67
- * afresh. If the interval is not active, this starts the interval.
68
- * @memberof IInterval
69
- */
70
- set(): void;
71
-
72
- /**
73
- * Clear the active interval.
74
- *
75
- * If the interval is active, this cancels that interval. If the interval
76
- * is not active, this does nothing.
77
- * @param {ClearPolicy} [policy] When ClearPolicy.Resolve, if the request
78
- * was set when called, the request action is invoked after cancelling
79
- * the request; otherwise, the pending action is cancelled.
80
- * Defaults to `ClearPolicy.Cancel`.
81
- * @memberof IInterval
82
- */
83
- clear(policy?: ClearPolicy): void;
84
- }
85
- /**
86
- * Encapsulates everything associated with calling requestAnimationFrame/
87
- * cancelAnimationFrame, and managing the lifecycle of that request, including
88
- * the ability to resolve or cancel a pending request.
89
- * @export
90
- * @interface IAnimationFrame
91
- */
92
- export interface IAnimationFrame {
93
- /**
94
- * Determine if the request is set or not.
95
- * @returns {boolean} true if the request is set (aka pending), otherwise
96
- * false.
97
- * @memberof IAnimationFrame
98
- */
99
- isSet: boolean;
100
-
101
- /**
102
- * Set the request.
103
- *
104
- * If the request is pending, this cancels that pending request and
105
- * starts a request afresh. If the request is not pending, this
106
- * starts the request.
107
- * @memberof IAnimationFrame
108
- */
109
- set(): void;
110
-
111
- /**
112
- * Clear the set request.
113
- *
114
- * If the request is pending, this cancels that pending request. If no
115
- * request is pending, this does nothing.
116
- * @param {ClearPolicy} [policy] When ClearPolicy.Resolve, if the request
117
- * was set when called, the request action is invoked after cancelling
118
- * the request; otherwise, the pending action is cancelled.
119
- * Defaults to `ClearPolicy.Cancel`.
120
- * @memberof IAnimationFrame
121
- */
122
- clear(policy?: ClearPolicy): void;
123
- }
124
- export type Options = {|
125
- schedulePolicy?: SchedulePolicy,
126
- clearPolicy?: ClearPolicy,
127
- |};
128
- /**
129
- * Provides means to request timeouts, intervals, and animation frames, with
130
- * additional support for clearing all requested actions.
131
- *
132
- * This interface describes a replacement for the `setTimeout`/`clearTimeout`,
133
- * `setInterval`/`clearInterval` and `requestAnimationFrame`/`cancelAnimationFrame`
134
- * APIs that supports the ability to easily clear all pending actions.
135
- * @export
136
- * @interface IScheduleActions
137
- */
138
- export interface IScheduleActions {
139
- /**
140
- * Request a timeout.
141
- *
142
- * A timeout will wait for a given period and then invoke a given action.
143
- * @param {() => void} action The action to be invoked when the timeout
144
- * period is reached.
145
- * @param {number} period The timeout period in milliseconds. The action
146
- * will be invoked after this period has passed since the timeout was set.
147
- * This value must be greater than or equal to zero.
148
- * @param {boolean} [autoSchedule] Whether or not to set the timeout as soon
149
- * as this call is made, or wait until `set` is explicitly called. Defaults
150
- * to `true`.
151
- * @param {boolean} [resolveOnClear] Whether or not the associated action
152
- * will be invoked if it is still pending at the point the timeout is
153
- * cleared. Defaults to `false`.
154
- * @returns {ITimeout} A interface for manipulating the created timeout.
155
- * @memberof IScheduleActions
156
- */
157
- timeout(action: () => mixed, period: number, options?: Options): ITimeout;
158
-
159
- /**
160
- * Request an interval.
161
- *
162
- * An interval will invoke a given action each time the given period has
163
- * passed until the interval is cleared.
164
- * @param {() => void} action The action to be invoked when the interval
165
- * period occurs.
166
- * @param {number} period The interval period in milliseconds. The action
167
- * will be invoked each time this period has passed since the interval was
168
- * set or last occurred.
169
- * This value must be greater than zero.
170
- * @param {boolean} [autoSchedule] Whether or not to set the interval as soon
171
- * as this call is made, or wait until `set` is explicitly called. Defaults
172
- * to `true`.
173
- * @param {boolean} [resolveOnClear] Whether or not the associated action
174
- * will be invoked at the point the interval is cleared if the interval
175
- * is running at that time. Defaults to `false`.
176
- * @returns {IInterval} An interface for manipulating the created interval.
177
- * @memberof IScheduleActions
178
- */
179
- interval(action: () => mixed, period: number, options?: Options): IInterval;
180
-
181
- /**
182
- * Request an animation frame.
183
- *
184
- * An animation frame request tells the browser that you wish to perform an
185
- * animation and requests that the browser call a specified function to
186
- * update an animation before the next repaint.
187
- * @param {(time: DOMHighResTimeStamp) => void} action The action to be invoked before the repaint.
188
- * @param {boolean} [autoSchedule] Whether or not to make the request as soon
189
- * as this call is made, or wait until `set` is explicitly called. Defaults
190
- * to `true`.
191
- * @param {boolean} [resolveOnClear] Whether or not the associated action
192
- * will be invoked at the point the request is cleared if it has not yet
193
- * executed. Defaults to `false`.
194
- * @returns {IAnimationFrame} An interface for manipulating the created
195
- * request.
196
- * @memberof IScheduleActions
197
- */
198
- animationFrame(
199
- action: (time: DOMHighResTimeStamp) => void,
200
- options?: Options
201
- ): IAnimationFrame;
202
-
203
- /**
204
- * Clears all timeouts, intervals, and animation frame requests that were
205
- * made with this scheduler.
206
- * @memberof IScheduleActions
207
- */
208
- clearAll(): void;
209
- }
210
- /**
211
- * A props object type that can be spread into the a componenet wrapped with
212
- * the `withActionScheduler` higher order component.
213
- */
214
- export type WithActionSchedulerProps = $ReadOnly<{|
215
- /**
216
- * An instance of the `IScheduleActions` API to use for scheduling
217
- * intervals, timeouts, and animation frame requests.
218
- */
219
- schedule: IScheduleActions,
220
- |}>;
221
- export type WithoutActionScheduler<TProps: { ... }> = $Diff<
222
- TProps,
223
- { schedule: any }
224
- >;
225
- /**
226
- * Extends the given props with props that the `withActionScheduler` higher
227
- * order component will inject.
228
- */
229
- export type WithActionScheduler<TOwnProps: { ... }> = {|
230
- ...TOwnProps,
231
- ...WithActionSchedulerProps,
232
- |};
@@ -1,6 +0,0 @@
1
- /**
2
- * Flowtype definitions for data
3
- * Generated by Flowgen from a Typescript Definition
4
- * Flowgen v1.21.0
5
- * @flow
6
- */