@pezkuwi/x-global 14.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # @pezkuwi/x-global
2
+
3
+ A cross-environment global object. checks for global > self > window > this.
4
+
5
+ Install it via `yarn add @pezkuwi/x-global`
6
+
7
+ ```js
8
+ import { xglobal } from '@pezkuwi/x-global';
9
+
10
+ console.log(typeof xglobal.TextEncoder);
11
+ ```
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "author": "Jaco Greeff <jacogr@gmail.com>",
3
+ "bugs": "https://github.com/pezkuwichain/pezkuwi-common/issues",
4
+ "description": "A cross-environment global replacement",
5
+ "engines": {
6
+ "node": ">=18"
7
+ },
8
+ "homepage": "https://github.com/pezkuwichain/pezkuwi-common/tree/master/packages/x-global#readme",
9
+ "license": "Apache-2.0",
10
+ "name": "@pezkuwi/x-global",
11
+ "repository": {
12
+ "directory": "packages/x-global",
13
+ "type": "git",
14
+ "url": "https://github.com/pezkuwichain/pezkuwi-common.git"
15
+ },
16
+ "sideEffects": false,
17
+ "type": "module",
18
+ "version": "14.0.1",
19
+ "main": "index.js",
20
+ "dependencies": {
21
+ "tslib": "^2.8.0"
22
+ }
23
+ }
package/src/index.ts ADDED
@@ -0,0 +1,67 @@
1
+ // Copyright 2017-2025 @polkadot/x-global authors & contributors
2
+ // SPDX-License-Identifier: Apache-2.0
3
+
4
+ export { packageInfo } from './packageInfo.js';
5
+
6
+ // Ensure that we are able to run this without any @types/node definitions
7
+ // and without having lib: ['dom'] in our TypeScript configuration
8
+ // (may not be available in all environments, e.g. Deno springs to mind)
9
+ declare const global: unknown;
10
+ declare const self: unknown;
11
+ declare const window: unknown;
12
+
13
+ // The [key: string]: unknown part here is for not-everywhere globals
14
+ // such as `Buffer` (that won't exist is deno/window global environments)
15
+ type GlobalThis = typeof globalThis & {
16
+ process?: {
17
+ env?: Record<string, string>;
18
+ };
19
+
20
+ [key: string]: unknown;
21
+ };
22
+
23
+ type GlobalNames = keyof typeof globalThis;
24
+
25
+ type GlobalType<N extends GlobalNames> = typeof globalThis[N];
26
+
27
+ /** @internal Last-resort "this", if it gets here it probably would fail anyway */
28
+ function evaluateThis (fn: (code: string) => unknown): unknown {
29
+ return fn('return this');
30
+ }
31
+
32
+ /**
33
+ * A cross-environment implementation for globalThis
34
+ */
35
+ export const xglobal = /*#__PURE__*/ (
36
+ typeof globalThis !== 'undefined'
37
+ ? globalThis
38
+ : typeof global !== 'undefined'
39
+ ? global
40
+ : typeof self !== 'undefined'
41
+ ? self
42
+ : typeof window !== 'undefined'
43
+ ? window
44
+ : evaluateThis(Function)
45
+ ) as GlobalThis;
46
+
47
+ /**
48
+ * Extracts a known global from the environment, applying a fallback if not found
49
+ */
50
+ export function extractGlobal <N extends GlobalNames, T extends GlobalType<N>> (name: N, fallback: unknown): T {
51
+ // Not quite sure why this is here - snuck in with TS 4.7.2 with no real idea
52
+ // (as of now) as to why this looks like an "any" when we do cast it to a T
53
+ //
54
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-return
55
+ return typeof xglobal[name] === 'undefined'
56
+ ? fallback as T
57
+ : xglobal[name] as T;
58
+ }
59
+
60
+ /**
61
+ * Expose a value as a known global, if not already defined
62
+ */
63
+ export function exposeGlobal <N extends GlobalNames, T extends GlobalType<N>> (name: N, fallback: unknown): void {
64
+ if (typeof xglobal[name] === 'undefined') {
65
+ (xglobal as Record<string, unknown>)[name] = fallback as T;
66
+ }
67
+ }
package/src/mod.ts ADDED
@@ -0,0 +1,4 @@
1
+ // Copyright 2017-2025 @polkadot/x-global authors & contributors
2
+ // SPDX-License-Identifier: Apache-2.0
3
+
4
+ export * from './index.js';
@@ -0,0 +1,6 @@
1
+ // Copyright 2017-2025 @polkadot/x-global authors & contributors
2
+ // SPDX-License-Identifier: Apache-2.0
3
+
4
+ // Do not edit, auto-generated by @polkadot/dev
5
+
6
+ export const packageInfo = { name: '@polkadot/x-global', path: 'auto', type: 'auto', version: '14.0.1' };
@@ -0,0 +1,12 @@
1
+ {
2
+ "extends": "../../tsconfig.base.json",
3
+ "compilerOptions": {
4
+ "baseUrl": "..",
5
+ "outDir": "./build",
6
+ "rootDir": "./src"
7
+ },
8
+ "exclude": [
9
+ "**/mod.ts"
10
+ ],
11
+ "references": []
12
+ }
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../node_modules/typescript/lib/lib.d.ts","../../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.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.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.date.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.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","./src/packageInfo.ts","./src/index.ts","../../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/buffer/index.d.ts","../../node_modules/undici-types/header.d.ts","../../node_modules/undici-types/readable.d.ts","../../node_modules/undici-types/file.d.ts","../../node_modules/undici-types/fetch.d.ts","../../node_modules/undici-types/formdata.d.ts","../../node_modules/undici-types/connector.d.ts","../../node_modules/undici-types/client.d.ts","../../node_modules/undici-types/errors.d.ts","../../node_modules/undici-types/dispatcher.d.ts","../../node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/undici-types/global-origin.d.ts","../../node_modules/undici-types/pool-stats.d.ts","../../node_modules/undici-types/pool.d.ts","../../node_modules/undici-types/handlers.d.ts","../../node_modules/undici-types/balanced-pool.d.ts","../../node_modules/undici-types/agent.d.ts","../../node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/undici-types/mock-agent.d.ts","../../node_modules/undici-types/mock-client.d.ts","../../node_modules/undici-types/mock-pool.d.ts","../../node_modules/undici-types/mock-errors.d.ts","../../node_modules/undici-types/proxy-agent.d.ts","../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/undici-types/retry-handler.d.ts","../../node_modules/undici-types/retry-agent.d.ts","../../node_modules/undici-types/api.d.ts","../../node_modules/undici-types/interceptors.d.ts","../../node_modules/undici-types/util.d.ts","../../node_modules/undici-types/cookies.d.ts","../../node_modules/undici-types/patch.d.ts","../../node_modules/undici-types/websocket.d.ts","../../node_modules/undici-types/eventsource.d.ts","../../node_modules/undici-types/filereader.d.ts","../../node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/undici-types/content-type.d.ts","../../node_modules/undici-types/cache.d.ts","../../node_modules/undici-types/index.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/sea.d.ts","../../node_modules/@types/node/sqlite.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/ts5.6/index.d.ts","../../node_modules/@types/bn.js/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/body-parser/index.d.ts","../../node_modules/@types/bonjour/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/connect-history-api-fallback/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/estree/index.d.ts","../../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/mime/Mime.d.ts","../../node_modules/@types/mime/index.d.ts","../../node_modules/@types/serve-static/index.d.ts","../../node_modules/@types/express/index.d.ts","../../node_modules/@types/http-proxy/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/keyv/index.d.ts","../../node_modules/react-native/types/modules/BatchedBridge.d.ts","../../node_modules/react-native/types/modules/Codegen.d.ts","../../node_modules/react-native/types/modules/Devtools.d.ts","../../node_modules/react-native/types/modules/globals.d.ts","../../node_modules/react-native/types/modules/LaunchScreen.d.ts","../../node_modules/react-native/types/private/Utilities.d.ts","../../node_modules/react-native/types/public/Insets.d.ts","../../node_modules/react-native/types/public/ReactNativeTypes.d.ts","../../node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts","../../node_modules/react-native/types/public/ReactNativeRenderer.d.ts","../../node_modules/react-native/Libraries/Components/Touchable/Touchable.d.ts","../../node_modules/react-native/Libraries/Components/View/ViewAccessibility.d.ts","../../node_modules/react-native/Libraries/Components/View/ViewPropTypes.d.ts","../../node_modules/react-native/Libraries/Components/RefreshControl/RefreshControl.d.ts","../../node_modules/react-native/Libraries/Components/ScrollView/ScrollView.d.ts","../../node_modules/react-native/Libraries/Components/View/View.d.ts","../../node_modules/react-native/Libraries/Image/ImageResizeMode.d.ts","../../node_modules/react-native/Libraries/Image/ImageSource.d.ts","../../node_modules/react-native/Libraries/Image/Image.d.ts","../../node_modules/@react-native/virtualized-lists/Lists/VirtualizedList.d.ts","../../node_modules/@react-native/virtualized-lists/index.d.ts","../../node_modules/react-native/Libraries/Lists/FlatList.d.ts","../../node_modules/react-native/Libraries/ReactNative/RendererProxy.d.ts","../../node_modules/react-native/Libraries/Lists/SectionList.d.ts","../../node_modules/react-native/Libraries/Text/Text.d.ts","../../node_modules/react-native/Libraries/Animated/Animated.d.ts","../../node_modules/react-native/Libraries/StyleSheet/StyleSheetTypes.d.ts","../../node_modules/react-native/Libraries/StyleSheet/StyleSheet.d.ts","../../node_modules/react-native/Libraries/StyleSheet/processColor.d.ts","../../node_modules/react-native/Libraries/ActionSheetIOS/ActionSheetIOS.d.ts","../../node_modules/react-native/Libraries/Alert/Alert.d.ts","../../node_modules/react-native/Libraries/Animated/Easing.d.ts","../../node_modules/react-native/Libraries/Animated/useAnimatedValue.d.ts","../../node_modules/react-native/Libraries/vendor/emitter/EventEmitter.d.ts","../../node_modules/react-native/Libraries/EventEmitter/RCTDeviceEventEmitter.d.ts","../../node_modules/react-native/Libraries/EventEmitter/RCTNativeAppEventEmitter.d.ts","../../node_modules/react-native/Libraries/AppState/AppState.d.ts","../../node_modules/react-native/Libraries/BatchedBridge/NativeModules.d.ts","../../node_modules/react-native/Libraries/Components/AccessibilityInfo/AccessibilityInfo.d.ts","../../node_modules/react-native/Libraries/Components/ActivityIndicator/ActivityIndicator.d.ts","../../node_modules/react-native/Libraries/Components/Clipboard/Clipboard.d.ts","../../node_modules/react-native/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.d.ts","../../node_modules/react-native/Libraries/EventEmitter/NativeEventEmitter.d.ts","../../node_modules/react-native/Libraries/Components/Keyboard/Keyboard.d.ts","../../node_modules/react-native/types/private/TimerMixin.d.ts","../../node_modules/react-native/Libraries/Components/Keyboard/KeyboardAvoidingView.d.ts","../../node_modules/react-native/Libraries/Components/Pressable/Pressable.d.ts","../../node_modules/react-native/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.d.ts","../../node_modules/react-native/Libraries/Components/SafeAreaView/SafeAreaView.d.ts","../../node_modules/react-native/Libraries/Components/StatusBar/StatusBar.d.ts","../../node_modules/react-native/Libraries/Components/Switch/Switch.d.ts","../../node_modules/react-native/Libraries/Components/TextInput/InputAccessoryView.d.ts","../../node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts","../../node_modules/react-native/Libraries/Components/ToastAndroid/ToastAndroid.d.ts","../../node_modules/react-native/Libraries/Components/Touchable/TouchableWithoutFeedback.d.ts","../../node_modules/react-native/Libraries/Components/Touchable/TouchableHighlight.d.ts","../../node_modules/react-native/Libraries/Components/Touchable/TouchableOpacity.d.ts","../../node_modules/react-native/Libraries/Components/Touchable/TouchableNativeFeedback.d.ts","../../node_modules/react-native/Libraries/Components/Button.d.ts","../../node_modules/react-native/Libraries/DevToolsSettings/DevToolsSettingsManager.d.ts","../../node_modules/react-native/Libraries/Interaction/InteractionManager.d.ts","../../node_modules/react-native/Libraries/Interaction/PanResponder.d.ts","../../node_modules/react-native/Libraries/LayoutAnimation/LayoutAnimation.d.ts","../../node_modules/react-native/Libraries/Linking/Linking.d.ts","../../node_modules/react-native/Libraries/LogBox/LogBox.d.ts","../../node_modules/react-native/Libraries/Modal/Modal.d.ts","../../node_modules/react-native/Libraries/Performance/Systrace.d.ts","../../node_modules/react-native/Libraries/PermissionsAndroid/PermissionsAndroid.d.ts","../../node_modules/react-native/Libraries/PushNotificationIOS/PushNotificationIOS.d.ts","../../node_modules/react-native/Libraries/Utilities/IPerformanceLogger.d.ts","../../node_modules/react-native/Libraries/ReactNative/AppRegistry.d.ts","../../node_modules/react-native/Libraries/ReactNative/I18nManager.d.ts","../../node_modules/react-native/Libraries/ReactNative/RootTag.d.ts","../../node_modules/react-native/Libraries/ReactNative/UIManager.d.ts","../../node_modules/react-native/Libraries/ReactNative/requireNativeComponent.d.ts","../../node_modules/react-native/Libraries/Settings/Settings.d.ts","../../node_modules/react-native/Libraries/Share/Share.d.ts","../../node_modules/react-native/Libraries/StyleSheet/PlatformColorValueTypesIOS.d.ts","../../node_modules/react-native/Libraries/StyleSheet/PlatformColorValueTypes.d.ts","../../node_modules/react-native/Libraries/TurboModule/RCTExport.d.ts","../../node_modules/react-native/Libraries/TurboModule/TurboModuleRegistry.d.ts","../../node_modules/react-native/Libraries/Utilities/Appearance.d.ts","../../node_modules/react-native/Libraries/Utilities/BackHandler.d.ts","../../node_modules/react-native/Libraries/Utilities/DevSettings.d.ts","../../node_modules/react-native/Libraries/Utilities/Dimensions.d.ts","../../node_modules/react-native/Libraries/Utilities/PixelRatio.d.ts","../../node_modules/react-native/Libraries/Utilities/Platform.d.ts","../../node_modules/react-native/Libraries/Vibration/Vibration.d.ts","../../node_modules/react-native/Libraries/YellowBox/YellowBoxDeprecated.d.ts","../../node_modules/react-native/Libraries/vendor/core/ErrorUtils.d.ts","../../node_modules/react-native/types/public/DeprecatedPropertiesAlias.d.ts","../../node_modules/react-native/types/index.d.ts","../../node_modules/@types/resolve/index.d.ts","../../node_modules/@types/responselike/index.d.ts","../../node_modules/@types/retry/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/serve-index/index.d.ts","../../node_modules/@types/sockjs/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/w3c-web-usb/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/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"],"fileInfos":["a7297ff837fcdf174a9524925966429eb8e5feecc2cc55cc06574e6b092c1eaa",{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"4af6b0c727b7a2896463d512fafd23634229adf69ac7c00e2ae15a09cb084fad","affectsGlobalScope":true},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true},{"version":"ae37d6ccd1560b0203ab88d46987393adaaa78c919e51acf32fb82c86502e98c","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"4b28f372e03793478c995c43f877d5ba9b8a156d8a43181a85657b5a749e563c","fba3ca21ea68527abb424c699e24e7b60853d27ab2e3d0e05931cfb6d5f4ee3a",{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true},{"version":"2d1319e6b5d0efd8c5eae07eb864a00102151e8b9afddd2d45db52e9aae002c4","affectsGlobalScope":true},"f6114eb1e8f70ec08816bdaa6ec740a0a7a01f25743e36f655f00157be394374","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107",{"version":"bb2cd9339d0201e7e78ccb6ff2f71aac103934bf35eaaa37e139ac2b68af0db8","affectsGlobalScope":true},"76103716ba397bbb61f9fa9c9090dca59f39f9047cb1352b2179c5d8e7f4e8d0",{"version":"53eac70430b30089a3a1959d8306b0f9cfaf0de75224b68ef25243e0b5ad1ca3","affectsGlobalScope":true},"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","115971d64632ea4742b5b115fb64ed04bcaae2c3c342f13d9ba7e3f9ee39c4e7",{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"46e07db372dd75edc1a26e68f16d1b7ffb34b7ab3db5cdb3e391a3604ad7bb7c","affectsGlobalScope":true},"24642567d3729bcc545bacb65ee7c0db423400c7f1ef757cab25d05650064f98","e6f5a38687bebe43a4cef426b69d34373ef68be9a6b1538ec0a371e69f309354","a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"42a872b757f365f61369e869f8403ec1e78b5a85418622801011009a1430d87f","affectsGlobalScope":true},"c956ba45704d4a97f7a96923a307a6203bc0e7c4c532930d4c8ca261eaaff32a","ab0e88d33ccf15d8b3c891038b5a16094b0dd7e860ab0e2ba08da4384afce02b","954580f86c8e2a4abd5dcd1bcdf1a4c7e012495f1c39e058dc738bc93024642a","fa56be9b96f747e93b895d8dc2aa4fb9f0816743e6e2abb9d60705e88d4743a2","8257c55ff6bff6169142a35fce6811b511d857b4ae4f522cdb6ce20fd2116b2c","6d386bc0d7f3afa1d401afc3e00ed6b09205a354a9795196caed937494a713e6",{"version":"3a9e5dddbd6ca9507d0c06a557535ba2224a94a2b0f3e146e8215f93b7e5b3a8","affectsGlobalScope":true},"94c4187083503a74f4544503b5a30e2bd7af0032dc739b0c9a7ce87f8bddc7b9","b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0",{"version":"3c36ab47df4668254ccc170fc42e7d5116fd86a7e408d8dc220e559837cd2bbb","affectsGlobalScope":true},{"version":"6f6abdaf8764ef01a552a958f45e795b5e79153b87ddad3af5264b86d2681b72","affectsGlobalScope":true},"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","c6b4e0a02545304935ecbf7de7a8e056a31bb50939b5b321c9d50a405b5a0bba","c86b9afa9b39b12db8e877d23b48888d80f26e1fe72a95f58552746a6e1fa4fe","e432b0e3761ca9ba734bdd41e19a75fec1454ca8e9769bfdf8b31011854cf06a","e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","15c5e91b5f08be34a78e3d976179bf5b7a9cc28dc0ef1ffebffeb3c7812a2dca","a8f06c2382a30b7cb89ad2dfc48fc3b2b490f3dafcd839dadc008e4e5d57031d","07b9d3b7204d931acc29269c98ac3aac87ebcba6e05141552d42a4c17f895aa4","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633",{"version":"1425f76ac97ce8617d1e2fa79e9a14e0fd1cfdaa155e13d4e92403a468177bc2","affectsGlobalScope":true},"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada",{"version":"cca97c55398b8699fa3a96ef261b01d200ed2a44d2983586ab1a81d7d7b23cd9","affectsGlobalScope":true},{"version":"bef91efa0baea5d0e0f0f27b574a8bc100ce62a6d7e70220a0d58af6acab5e89","affectsGlobalScope":true},"f59493f68eade5200559e5016b5855f7d12e6381eb6cab9ad8a379af367b3b2d","125e3472965f529de239d2bc85b54579fed8e0b060d1d04de6576fb910a6ec7f","66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4",{"version":"18f5c7c4ad71748cffdd42e829398acdfd2d150a887e5f07aae4f2acab68e71b","affectsGlobalScope":true},{"version":"72ed3074450a4a315063278f046637afdeea90aa72b2292a7976958ceafc344a","affectsGlobalScope":true},"a5c09990a37469b0311a92ce8feeb8682e83918723aedbd445bd7a0f510eaaa3","6b29aea17044029b257e5bd4e3e4f765cd72b8d3c11c753f363ab92cc3f9f947","ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a",{"version":"d008cf1330c86b37a8128265c80795397c287cecff273bc3ce3a4883405f5112","affectsGlobalScope":true},"78dc0513cc4f1642906b74dda42146bcbd9df7401717d6e89ea6d72d12ecb539",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"f2b6058d3dd78c1b4dafc97083c5d44bdfbf4155194044bd17b8fcca554e766a","ef9ba722fb39e39833a2dc9da7d81ffc0888d72817cd591bf4df176a15071388","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"ae3fe461989bbd951344efc1f1fe932360ce7392e6126bdb225a82a1bbaf15ee","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","dca41e86e89dfb2e85e6935260250f02eb6683b86c2fa16bec729ddd1bcd9b4b","c84d0f714fe122193c21c0f0917e873beb3a03fa3422ceb2fbd1ebc0558790a0","e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a","5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7","951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e","f47887b61c6cf2f48746980390d6cb5b8013518951d912cfb37fe748071942be","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","c1d5cc0286eef54f6246a972ec1720efbba6b7b0a53a303e1f2067ca229ecd16","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","fec943fdb3275eb6e006b35e04a8e2e99e9adf3f4b969ddf15315ac7575a93e4",{"version":"3a909e8789a4f8b5377ef3fb8dc10d0c0a090c03f2e40aab599534727457475a","affectsGlobalScope":true},"2b47c8df863142d9383f948c987e1ebd25ade3867aeb4ae60e9d6009035dfe46","b8dd45aa6e099a5f564edcabfe8114096b096eb1ffaa343dd6f3fe73f1a6e85e",{"version":"634e207980e76276f0ebbeabc7ff7b6efa185146cacf889460c52662b4b7027e","affectsGlobalScope":true},"bc4db28f3510994e45bbabba1ee33e9a0d27dab33d4c8a5844cee8c85438a058","232f660363b3b189f7be7822ed71e907195d1a85bc8d55d2b7ce3f09b2136938","e745388cfad9efb4e5a9a15a2c6b66d54094dd82f8d0c2551064e216f7b51526","53390c21d095fb54e6c0b8351cbf7f4008f096ade9717bc5ee75e340bc3dfa30","71493b2c538dffa1e3e968b55b70984b542cc6e488012850865f72768ff32630","8ebf448e9837fda1a368acbb575b0e28843d5b2a3fda04bce76248b64326ea49","91b9f6241fca7843985aa31157cfa08cc724c77d91145a4d834d27cdde099c05","c310767ede7c41b50ca8f076ffc844600ac82883b5f3126f835d90f418780168","19d0723922073cdefbc316983beb29675b27e8038bab1dba354194acabfbdac4","3dfa3a6f2a62259b56fa7bcebfbacf886848dfa037298be5bed07c7a0381ee4f","5fd6057b39eaf9e31f9d2e75bf79116cdc507557edb365fc03d9158bc60fe31f","1882680f8c88c5648d603408dd1943857ca831a815e33d3126be8368f7a69252","f387a979388291b2688ba0f604e3ae78874f5f777616b448d34109762a4f05a9","cae0fb826d8a88749189b8a924dfcb5d3ad629e3bc5ec934195fbd83fa48b068","037802282501aec42a40e0ecd252bce9f0eba564698d497e21185d67955dd2ed","19432085ed8bed3f79fcd15bf2deefbf9c28cff2616e15b3156d14c81e6687b7","42bacb33cddecbcfe3e043ee1117ba848801749e44f947626765b3e0aec74b1c","69029010fbdc1f398cd294b3a708e0277d5929a9d44dbb453311119bb3e3ad57","cd2156bc8e4d54d52a2817d1b6f4629a5dd3173b1d8bb0fc893ee678d6a78ecd","e1df03bd1250fa42b4325e2e4fd0d2097363a20141fb8bfa856031d4e6884954","562cce1c8e14e8d5a55d1931cb1848b1df49cc7b1024356d56f3550ed57ad67f","623fa4efc706bb9956d0ae94b13321c6617655bf8ebdb270c9792bb398f82e44","49109fdc2f6e3f2755d6851fa86167536637cd2b8616f6e45cdce3820b9fb797","a94616aed95ec0f0b7a893ad939adc8e7c13e41128179c554f0974699798083d","9054417b5760061bc5fe31f9eee5dc9bf018339b0617d3c65dd1673c8e3c0f25","a306da1c4fba2f9c62b7335dc0c00faff217d7e13e70c72b10d7b3e18986a0de","443702ca8101ef0adc827c2cc530ca93cf98d41e36ce4399efb9bc833ad9cb62","c94f70562ae60797cce564c3bebbaaf1752c327d5063d6ac152aa5ca1616c267","2aeb5fcdfc884b16015617d263fd8d1a8513f7efe23880be4e5f0bdb3794b37c","fd412dd6372493eb8e3e95cae8687d35e4d34dde905a33e0ee47b74224cdd6ab","b561170fbe8d4292425e1dfa52406c8d97575681f7a5e420d11d9f72f7c29e38","5fe94f3f6411a0f6293f16fdc8e02ee61138941847ce91d6f6800c97fac22fcd","7f7c0ecc3eeeef905a3678e540947f4fbbc1a9c76075419dcc5fbfc3df59cb0b","df3303018d45c92be73fb4a282d5a242579f96235f5e0f8981983102caf5feca","35db266b474b3b9dfd0bc7d25dff3926cc227de45394262f3783b8b174182a16","8205e62a7310ac0513747f6d84175400680cff372559bc5fbe2df707194a295d","084d0df6805570b6dc6c8b49c3a71d5bdfe59606901e0026c63945b68d4b080a","8387fa3287992c71702756fe6ecea68e2f8f2c5aa434493e3afe4817dd4a4787","0f066f9654e700a9cf79c75553c934eb14296aa80583bd2b5d07e2d582a3f4ee","269c5d54104033b70331343bd931c9933852a882391ed6bd98c3d8b7d6465d22","a56b8577aaf471d9e60582065a8193269310e8cae48c1ce4111ed03216f5f715","486ae83cd51b813095f6716f06cc9b2cf480ad1d6c7f8ec59674d6c858cd2407","fff527e2567a24dd634a30268f1aa8a220315fed9c513d70ee872e54f67f27f3","5dd0ff735b3f2e642c3f16bcfb3dc4ecebb679a70e43cfb19ab5fd84d8faaeed","d1d78d1ef0f21ac77cdc436d2a4d56592453a8a2e51af2040ec9a69a5d35e4de","bc55b91274e43f88030c9cfe2c4217fae57894c3c302173ab6e9743c29484e3d","8bb22f70bfd7bf186631fa565c9202ee6a1009ffb961197b7d092b5a1e1d56b1","77282216c61bcef9a700db98e142301d5a7d988d3076286029da63e415e98a42","1235cd1c2af210f96a265526acccd8748f4af016ac47c2a47e036c757e1c8ec7","64ce8e260a1362d4cadd6c753581a912a9869d4a53ec6e733dc61018f9250f5d","29db89aee3b9f95c0ceb8c6e5d129c746dbbf60d588f78cc549b14002ea4b9ec","33eedfef5ad506cfa5f650a66001e7df48bc9676ab5177826d599adb9600a723","4c4cb14e734799f98f97d5a0670cb7943bd2b4bd61413e33641f448e35e9f242","bdb2b70c74908c92ec41d8dd8375a195cb3bb07523e4de642b2b2dfbde249ca6","7b329f4137a552073f504022acbf8cd90d49cc5e5529791bef508f76ff774854","7889f4932dfa7b1126cdc17914d85d80b5860cc3d62ba329494007e8aab45430","d9725ef7f60a791668f7fb808eb90b1789feaaef989a686fefc0f7546a51dcdc","df55b9be6ba19a6f77487e09dc7a94d7c9bf66094d35ea168dbd4bac42c46b8f","595125f3e088b883d104622ef10e6b7d5875ff6976bbe4d7dca090a3e2dca513","8ebb6f0603bf481e893311c49e4d2e2061413c51b9ba5898cd9b0a01f5ef19c8","e0d7eed4ba363df3faadb8e617f95f9fc8adfbb00b87db7ade4a1098d6cf1e90","38faab59a79924ce5eb4f2f3e7e7db91e74d425b4183f908cc014be213f0d971","de115595321ce012c456f512a799679bfc874f0ac0a4928a8429557bb25086aa","cdca67bd898deff48e3acb05fb44500b5ebce16c26a8ec99dee1522cf9879795","0524cab11ba9048d151d93cc666d3908fda329eec6b1642e9a936093e6d79f28","869073d7523e75f45bd65b2072865c60002d5e0cbd3d17831e999cf011312778","c43f78e8fa0df471335a1ddf8ccc32aecaa7a9813049b355dff8a66ab35f4ae9","56503e377bc1344f155e4e3115a772cb4e59350c0b8131e3e1fb2750ac491608","6b579287217ee1320ee1c6cfec5f6730f3a1f91daab000f7131558ee531b2bf8","171cfc614e7a01c3a68b432a58c1149634a3dd79c87e0b23cec67439a26b91b7","a793636667598e739a52684033037a67dc2d9db37fab727623626ef19aa5abb9","b15d6238a86bc0fc2368da429249b96c260debc0cec3eb7b5f838ad32587c129","9be37564440fc3e305e1edc77e6406f7d09579195ad1d302b60ee3de31ec1d16","4b10e2fe52cb61035e58df3f1fdd926dd0fe9cf1a2302f92916da324332fb4e0","d1092ae8d6017f359f4758115f588e089848cc8fb359f7ba045b1a1cf3668a49","ddae9195b0da7b25a585ef43365f4dc5204a746b155fbee71e6ee1a9193fb69f","32dbced998ce74c5e76ce87044d0b4071857576dde36b0c6ed1d5957ce9cf5b5","5bc29a9918feba88816b71e32960cf11243b77b76630e9e87cad961e5e1d31d0","341ffa358628577f490f128f3880c01d50ef31412d1be012bb1cd959b0a383ea","ecc1b8878c8033bde0204b85e26fe1af6847805427759e5723882c848a11e134","cfc9c32553ad3b5be38342bc8731397438a93531118e1a226a8c79ad255b4f0c","3e7534c46dec077a25018ed6172714bee4e675c9bb22904266ff476123b2c217","7a92652dec948f457335cb7fb35662cc67d50b5d48dcfbfde9f2554c60ae657b","a090a8a3b0ef2cceeb089acf4df95df72e7d934215896afe264ff6f734d66d15","a0259c6054e3ed2c5fb705b6638e384446cbcdf7fd2072c659b43bd56e214b9a","005319c82222e57934c7b211013eb6931829e46b2a61c5d9a1c3c25f8dc3ea90","151f422f08c8ca67b77c5c39d49278b4df452ef409237c8219be109ae3cdae9d",{"version":"310a1cfd9f20c3d78b4ca7295f2d580f695c8a3d6fd586cf7c0a0fe1796c0f5f","affectsGlobalScope":true},"8baa5d0febc68db886c40bf341e5c90dc215a90cd64552e47e8184be6b7e3358","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","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","a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66",{"version":"dc409f321fd996ae183ff5da8ddd2d6d8a9b234b340e3300fad92bfd8390f48c","affectsGlobalScope":true},"9a2eaab4e54953c6b2ba21f7ac4c2593859da03917011c10a2acd8864e38e7b2","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","5d30d04a14ed8527ac5d654dc345a4db11b593334c11a65efb6e4facc5484a0e","c2c2a861a338244d7dd700d0c52a78916b4bb75b98fc8ca5e7c501899fc03796","b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","adb467429462e3891de5bb4a82a4189b92005d61c7f9367c089baf03997c104e","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9"],"root":[50,51],"options":{"composite":true,"outDir":"./build","rootDir":"./src"},"fileIdsList":[[53,96,313],[53,96],[53,96,313,314,315,316,317],[53,96,313,315],[53,96,262],[53,96,190],[53,96,147],[53,96,111,147,149],[53,96,102,147],[53,96,139,147,154],[53,96,111,147],[53,96,157,159],[53,96,156,157,158],[53,96,108,111,147,152,153],[53,96,150,153,154,163],[53,96,108,111,113,116,128,139,147],[53,96,166],[53,96,167],[53,96,108,147],[53,96,162],[53,96,161],[53,54,96],[53,95,96],[53,96,101,131],[53,96,97,102,108,109,116,128,139],[53,96,97,98,108,116],[53,96,99,140],[53,96,100,101,109,117],[53,96,101,128,136],[53,96,102,104,108,116],[53,95,96,103],[53,96,104,105],[53,96,108],[53,96,106,108],[53,95,96,108],[53,96,108,109,110,128,139],[53,96,108,109,110,123,128,131],[53,93,96,144],[53,93,96,104,108,111,116,128,139],[53,96,108,109,111,112,116,128,136,139],[53,96,111,113,128,136,139],[53,96,108,114],[53,96,115,139,144],[53,96,104,108,116,128],[53,96,117],[53,96,118],[53,95,96,119],[53,54,55,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,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],[53,96,121],[53,96,122],[53,96,108,123,124],[53,96,123,125,140,142],[53,96,108,128,129,130,131],[53,96,128,130],[53,96,128,129],[53,96,131],[53,96,132],[53,54,96,128],[53,96,108,134,135],[53,96,134,135],[53,96,101,116,128,136],[53,96,137],[96],[52,53,54,55,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,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],[53,96,116,138],[53,96,111,122,139],[53,96,101,140],[53,96,128,141],[53,96,115,142],[53,96,143],[53,96,101,108,110,119,128,139,142,144],[53,96,128,145],[53,96,111,128,147],[53,96,266,305],[53,96,266,290,305],[53,96,305],[53,96,266],[53,96,266,291,305],[53,96,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,296,297,298,299,300,301,302,303,304],[53,96,291,305],[53,96,109,164],[53,96,111,147,162],[53,96,108,111,113,128,136,139,145,147],[53,96,311],[53,96,198,199],[53,96,179,185,186,189,192,194,195,198],[53,96,196],[53,96,206],[53,96,178,204],[53,96,176,178,179,183,197,198],[53,96,198,227,228],[53,96,176,178,179,183,198],[53,96,204,213],[53,96,176,183,197,198,215],[53,96,177,179,182,183,186,197,198],[53,96,176,178,183,198],[53,96,176,178,183],[53,96,176,177,179,181,183,184,197,198],[53,96,198],[53,96,197,198],[53,96,176,178,179,182,183,197,198,204,215],[53,96,177,179],[53,96,176,178,181,197,198,215,225],[53,96,176,181,198,225,227],[53,96,176,178,181,183,215,225],[53,96,176,177,179,181,182,197,198,215],[53,96,179],[53,96,177,179,180,181,182,197,198],[53,96,204],[53,96,205],[53,96,176,177,178,179,182,187,188,197,198],[53,96,179,180],[53,96,185,186,191,197,198],[53,96,185,191,193,197,198],[53,96,179,183],[53,96,240],[53,96,178],[53,96,197],[53,96,187,196,198],[53,96,176,178,179,182,197,198],[53,96,250],[53,96,213],[53,96,171,172,173,174,175,177,178,179,180,181,182,183,184,185,186,187,188,189,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261],[53,96,173],[53,65,69,96,139],[53,65,96,128,139],[53,60,96],[53,62,65,96,136,139],[53,96,116,136],[53,60,96,147],[53,62,65,96,116,139],[53,57,58,61,64,96,108,128,139],[53,65,72,96],[53,57,63,96],[53,65,86,87,96],[53,61,65,96,131,139,147],[53,86,96,147],[53,59,60,96,147],[53,65,96],[53,59,60,61,62,63,64,65,66,67,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,87,88,89,90,91,92,96],[53,65,80,96],[53,65,72,73,96],[53,63,65,73,74,96],[53,64,96],[53,57,60,65,96],[53,65,69,73,74,96],[53,69,96],[53,63,65,68,96,139],[53,57,62,65,72,96],[53,96,128],[53,60,65,86,96,144,147],[50,53,96]],"referencedMap":[[315,1],[313,2],[318,3],[314,1],[316,4],[317,1],[190,5],[191,6],[148,7],[150,8],[151,9],[155,10],[149,11],[160,12],[156,2],[159,13],[157,2],[154,14],[164,15],[165,16],[166,2],[167,17],[168,18],[158,2],[169,2],[170,19],[161,20],[162,21],[54,22],[55,22],[95,23],[96,24],[97,25],[98,26],[99,27],[100,28],[101,29],[102,30],[103,31],[104,32],[105,32],[107,33],[106,34],[108,35],[109,36],[110,37],[94,38],[146,2],[111,39],[112,40],[113,41],[114,42],[115,43],[116,44],[117,45],[118,46],[119,47],[120,48],[121,49],[122,50],[123,51],[124,51],[125,52],[126,2],[127,2],[128,53],[130,54],[129,55],[131,56],[132,57],[133,58],[134,59],[135,60],[136,61],[137,62],[53,63],[52,2],[147,64],[138,65],[139,66],[140,67],[141,68],[142,69],[143,70],[144,71],[145,72],[153,2],[152,2],[263,2],[264,73],[265,2],[290,74],[291,75],[266,76],[269,76],[288,74],[289,74],[279,74],[278,77],[276,74],[271,74],[284,74],[282,74],[286,74],[270,74],[283,74],[287,74],[272,74],[273,74],[285,74],[267,74],[274,74],[275,74],[277,74],[281,74],[292,78],[280,74],[268,74],[305,79],[304,2],[299,78],[301,80],[300,78],[293,78],[294,78],[296,78],[298,78],[302,80],[303,80],[295,80],[297,80],[306,81],[163,82],[307,11],[308,2],[309,2],[310,83],[311,2],[312,84],[56,2],[200,85],[201,2],[196,86],[202,2],[203,87],[207,88],[208,2],[209,89],[210,90],[229,91],[211,2],[212,92],[214,93],[216,94],[217,95],[218,96],[184,96],[219,97],[185,98],[220,99],[221,90],[222,100],[223,101],[224,2],[181,102],[226,103],[228,104],[227,105],[225,106],[186,97],[182,107],[183,108],[230,2],[213,109],[205,109],[206,110],[189,111],[187,2],[188,2],[231,109],[232,112],[233,2],[234,93],[192,113],[194,114],[235,2],[236,115],[237,2],[238,2],[239,2],[241,116],[242,2],[193,2],[243,2],[244,117],[245,117],[246,2],[247,99],[249,99],[248,99],[198,118],[197,119],[199,99],[195,120],[250,2],[251,121],[179,117],[252,88],[253,88],[254,122],[255,109],[240,2],[256,2],[257,2],[258,2],[259,2],[260,2],[204,2],[262,123],[171,2],[172,5],[173,124],[175,2],[174,2],[215,2],[176,2],[261,5],[177,2],[180,107],[178,2],[1,2],[48,2],[49,2],[9,2],[13,2],[12,2],[3,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[4,2],[22,2],[5,2],[23,2],[27,2],[24,2],[25,2],[26,2],[28,2],[29,2],[30,2],[6,2],[31,2],[32,2],[33,2],[34,2],[7,2],[38,2],[35,2],[36,2],[37,2],[39,2],[8,2],[40,2],[45,2],[46,2],[41,2],[42,2],[43,2],[44,2],[2,2],[47,2],[11,2],[10,2],[72,125],[82,126],[71,125],[92,127],[63,128],[62,129],[91,7],[85,130],[90,131],[65,132],[79,133],[64,134],[88,135],[60,136],[59,7],[89,137],[61,138],[66,139],[67,2],[70,139],[57,2],[93,140],[83,141],[74,142],[75,143],[77,144],[73,145],[76,146],[86,7],[68,147],[69,148],[78,149],[58,150],[81,141],[80,139],[84,2],[87,151],[51,152],[50,2]],"semanticDiagnosticsPerFile":[[9,[{"start":60314,"length":15,"messageText":"Duplicate identifier 'AbortController'.","category":1,"code":2300,"relatedInformation":[{"file":"../../node_modules/react-native/types/modules/globals.d.ts","start":14091,"length":15,"messageText":"'AbortController' was also declared here.","category":3,"code":6203}]},{"start":60857,"length":15,"messageText":"Duplicate identifier 'AbortController'.","category":1,"code":2300,"relatedInformation":[{"file":"../../node_modules/react-native/types/modules/globals.d.ts","start":14091,"length":15,"messageText":"'AbortController' was also declared here.","category":3,"code":6203}]},{"start":61234,"length":11,"messageText":"Duplicate identifier 'AbortSignal'.","category":1,"code":2300,"relatedInformation":[{"file":"../../node_modules/react-native/types/modules/globals.d.ts","start":13285,"length":11,"messageText":"'AbortSignal' was also declared here.","category":3,"code":6203}]},{"start":62560,"length":11,"messageText":"Duplicate identifier 'AbortSignal'.","category":1,"code":2300,"relatedInformation":[{"file":"../../node_modules/react-native/types/modules/globals.d.ts","start":13285,"length":11,"messageText":"'AbortSignal' was also declared here.","category":3,"code":6203}]},{"start":344066,"length":12,"messageText":"All declarations of 'lastModified' must have identical modifiers.","category":1,"code":2687},{"start":344182,"length":4,"messageText":"All declarations of 'name' must have identical modifiers.","category":1,"code":2687},{"start":360881,"length":8,"messageText":"Duplicate identifier 'FormData'.","category":1,"code":2300,"relatedInformation":[{"file":"../../node_modules/react-native/types/modules/globals.d.ts","start":2720,"length":8,"messageText":"'FormData' was also declared here.","category":3,"code":6203}]},{"start":362025,"length":8,"messageText":"Duplicate identifier 'FormData'.","category":1,"code":2300,"relatedInformation":[{"file":"../../node_modules/react-native/types/modules/globals.d.ts","start":2720,"length":8,"messageText":"'FormData' was also declared here.","category":3,"code":6203}]},{"start":1036298,"length":3,"messageText":"Duplicate identifier 'URL'.","category":1,"code":2300,"relatedInformation":[{"file":"../../node_modules/react-native/types/modules/globals.d.ts","start":10331,"length":3,"messageText":"'URL' was also declared here.","category":3,"code":6203}]},{"start":1037714,"length":3,"messageText":"Duplicate identifier 'URL'.","category":1,"code":2300,"relatedInformation":[{"file":"../../node_modules/react-native/types/modules/globals.d.ts","start":10331,"length":3,"messageText":"'URL' was also declared here.","category":3,"code":6203}]},{"start":1038388,"length":15,"messageText":"Duplicate identifier 'URLSearchParams'.","category":1,"code":2300,"relatedInformation":[{"file":"../../node_modules/react-native/types/modules/globals.d.ts","start":10826,"length":15,"messageText":"'URLSearchParams' was also declared here.","category":3,"code":6203}]},{"start":1040355,"length":15,"messageText":"Duplicate identifier 'URLSearchParams'.","category":1,"code":2300,"relatedInformation":[{"file":"../../node_modules/react-native/types/modules/globals.d.ts","start":10826,"length":15,"messageText":"'URLSearchParams' was also declared here.","category":3,"code":6203}]},{"start":1311405,"length":11,"messageText":"Duplicate identifier 'RequestInfo'.","category":1,"code":2300,"relatedInformation":[{"file":"../../node_modules/react-native/types/modules/globals.d.ts","start":4749,"length":11,"messageText":"'RequestInfo' was also declared here.","category":3,"code":6203}]},{"start":1325954,"length":26,"messageText":"Duplicate identifier 'XMLHttpRequestResponseType'.","category":1,"code":2300,"relatedInformation":[{"file":"../../node_modules/react-native/types/modules/globals.d.ts","start":9969,"length":26,"messageText":"'XMLHttpRequestResponseType' was also declared here.","category":3,"code":6203}]}]],[174,[{"start":2044,"length":4,"messageText":"Subsequent variable declarations must have the same type. Variable 'Blob' must be of type '{ new (blobParts?: BlobPart[], options?: BlobPropertyBag): Blob; prototype: Blob; }', but here has type '{ new (blobParts?: (string | Blob)[], options?: BlobOptions): Blob; prototype: Blob; }'.","category":1,"code":2403,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":103801,"length":4,"messageText":"'Blob' was also declared here.","category":3,"code":6203}]},{"start":2178,"length":4,"messageText":"All declarations of 'name' must have identical modifiers.","category":1,"code":2687},{"start":2194,"length":12,"messageText":"All declarations of 'lastModified' must have identical modifiers.","category":1,"code":2687},{"start":2231,"length":4,"messageText":"Subsequent variable declarations must have the same type. Variable 'File' must be of type '{ new (fileBits: BlobPart[], fileName: string, options?: FilePropertyBag): File; prototype: File; }', but here has type '{ new (fileParts?: (string | Blob)[], name?: string, options?: BlobOptions): File; prototype: File; }'.","category":1,"code":2403,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":344347,"length":4,"messageText":"'File' was also declared here.","category":3,"code":6203}]},{"start":2720,"length":8,"messageText":"Duplicate identifier 'FormData'.","category":1,"code":2300,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":360881,"length":8,"messageText":"'FormData' was also declared here.","category":3,"code":6203},{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":362025,"length":8,"messageText":"and here.","category":3,"code":6204}]},{"start":3329,"length":7,"messageText":"Subsequent variable declarations must have the same type. Variable 'Headers' must be of type '{ new (init?: HeadersInit): Headers; prototype: Headers; }', but here has type '{ new (init?: HeadersInit_): Headers; prototype: Headers; }'.","category":1,"code":2403,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":591810,"length":7,"messageText":"'Headers' was also declared here.","category":3,"code":6203}]},{"start":3972,"length":4,"messageText":"Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'BodyInit_'.","category":1,"code":2717,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":39812,"length":4,"messageText":"'body' was also declared here.","category":3,"code":6203}]},{"start":4053,"length":7,"messageText":"Subsequent property declarations must have the same type. Property 'headers' must be of type 'HeadersInit', but here has type 'HeadersInit_'.","category":1,"code":2717,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":40283,"length":7,"messageText":"'headers' was also declared here.","category":3,"code":6203}]},{"start":4259,"length":6,"messageText":"Subsequent property declarations must have the same type. Property 'window' must be of type 'null', but here has type 'any'.","category":1,"code":2717,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":41381,"length":6,"messageText":"'window' was also declared here.","category":3,"code":6203}]},{"start":4637,"length":7,"messageText":"Subsequent variable declarations must have the same type. Variable 'Request' must be of type '{ new (input: URL | RequestInfo, init?: RequestInit): Request; prototype: Request; }', but here has type '{ new (input: string | Request, init?: RequestInit): Request; prototype: Request; }'.","category":1,"code":2403,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":846574,"length":7,"messageText":"'Request' was also declared here.","category":3,"code":6203}]},{"start":4749,"length":11,"messageText":"Duplicate identifier 'RequestInfo'.","category":1,"code":2300,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":1311405,"length":11,"messageText":"'RequestInfo' was also declared here.","category":3,"code":6203}]},{"start":4817,"length":7,"messageText":"Subsequent property declarations must have the same type. Property 'headers' must be of type 'HeadersInit', but here has type 'HeadersInit_'.","category":1,"code":2717,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":41501,"length":7,"messageText":"'headers' was also declared here.","category":3,"code":6203}]},{"start":5207,"length":8,"messageText":"Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; json(data: any, init?: ResponseInit): Response; redirect(url: string | URL, status?: number): Response; }', but here has type '{ new (body?: BodyInit_, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.","category":1,"code":2403,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":849865,"length":8,"messageText":"'Response' was also declared here.","category":3,"code":6203}]},{"start":7836,"length":5,"messageText":"Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent<XMLHttpRequestEventTarget>', but here has type 'ProgressEvent<EventTarget>'.","category":1,"code":2717,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":1229329,"length":7,"messageText":"'abort' was also declared here.","category":3,"code":6203}]},{"start":7860,"length":5,"messageText":"Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent<XMLHttpRequestEventTarget>', but here has type 'ProgressEvent<EventTarget>'.","category":1,"code":2717,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":1229384,"length":7,"messageText":"'error' was also declared here.","category":3,"code":6203}]},{"start":7884,"length":4,"messageText":"Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent<XMLHttpRequestEventTarget>', but here has type 'ProgressEvent<EventTarget>'.","category":1,"code":2717,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":1229439,"length":6,"messageText":"'load' was also declared here.","category":3,"code":6203}]},{"start":7907,"length":7,"messageText":"Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent<XMLHttpRequestEventTarget>', but here has type 'ProgressEvent<EventTarget>'.","category":1,"code":2717,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":1229493,"length":9,"messageText":"'loadend' was also declared here.","category":3,"code":6203}]},{"start":7933,"length":9,"messageText":"Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent<XMLHttpRequestEventTarget>', but here has type 'ProgressEvent<EventTarget>'.","category":1,"code":2717,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":1229550,"length":11,"messageText":"'loadstart' was also declared here.","category":3,"code":6203}]},{"start":7961,"length":8,"messageText":"Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent<XMLHttpRequestEventTarget>', but here has type 'ProgressEvent<EventTarget>'.","category":1,"code":2717,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":1229609,"length":10,"messageText":"'progress' was also declared here.","category":3,"code":6203}]},{"start":7988,"length":7,"messageText":"Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent<XMLHttpRequestEventTarget>', but here has type 'ProgressEvent<EventTarget>'.","category":1,"code":2717,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":1229667,"length":9,"messageText":"'timeout' was also declared here.","category":3,"code":6203}]},{"start":9969,"length":26,"messageText":"Duplicate identifier 'XMLHttpRequestResponseType'.","category":1,"code":2300,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":1325954,"length":26,"messageText":"'XMLHttpRequestResponseType' was also declared here.","category":3,"code":6203}]},{"start":10331,"length":3,"messageText":"Duplicate identifier 'URL'.","category":1,"code":2300,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":1036298,"length":3,"messageText":"'URL' was also declared here.","category":3,"code":6203},{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":1037714,"length":3,"messageText":"and here.","category":3,"code":6204}]},{"start":10826,"length":15,"messageText":"Duplicate identifier 'URLSearchParams'.","category":1,"code":2300,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":1038388,"length":15,"messageText":"'URLSearchParams' was also declared here.","category":3,"code":6203},{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":1040355,"length":15,"messageText":"and here.","category":3,"code":6204}]},{"start":12529,"length":6,"messageText":"Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.","category":1,"code":2717,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":1184980,"length":6,"messageText":"'onopen' was also declared here.","category":3,"code":6203}]},{"start":12560,"length":9,"messageText":"Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent<any>) => any', but here has type '(event: WebSocketMessageEvent) => void'.","category":1,"code":2717,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":1184820,"length":9,"messageText":"'onmessage' was also declared here.","category":3,"code":6203}]},{"start":12622,"length":7,"messageText":"Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.","category":1,"code":2717,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":1184666,"length":7,"messageText":"'onerror' was also declared here.","category":3,"code":6203}]},{"start":12680,"length":7,"messageText":"Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.","category":1,"code":2717,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":1184509,"length":7,"messageText":"'onclose' was also declared here.","category":3,"code":6203}]},{"start":12738,"length":16,"messageText":"Subsequent property declarations must have the same type. Property 'addEventListener' must be of type '{ <K extends keyof WebSocketEventMap>(type: K, listener: (this: WebSocket, ev: WebSocketEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; }', but here has type 'WebsocketEventListener'.","category":1,"code":2717,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":1186534,"length":174,"messageText":"'addEventListener' was also declared here.","category":3,"code":6203}]},{"start":12782,"length":19,"messageText":"Subsequent property declarations must have the same type. Property 'removeEventListener' must be of type '{ <K extends keyof WebSocketEventMap>(type: K, listener: (this: WebSocket, ev: WebSocketEventMap[K]) => any, options?: boolean | EventListenerOptions): void; (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; }', but here has type 'WebsocketEventListener'.","category":1,"code":2717,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":1186846,"length":174,"messageText":"'removeEventListener' was also declared here.","category":3,"code":6203}]},{"start":12842,"length":9,"messageText":"Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string | URL, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CONNECTING: 0; readonly OPEN: 1; readonly CLOSING: 2; readonly CLOSED: 3; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.","category":1,"code":2403,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":1187169,"length":9,"messageText":"'WebSocket' was also declared here.","category":3,"code":6203}]},{"start":13285,"length":11,"messageText":"Duplicate identifier 'AbortSignal'.","category":1,"code":2300,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":61234,"length":11,"messageText":"'AbortSignal' was also declared here.","category":3,"code":6203},{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":62560,"length":11,"messageText":"and here.","category":3,"code":6204}]},{"start":13285,"length":11,"code":2420,"category":1,"messageText":{"messageText":"Class 'AbortSignal' incorrectly implements interface 'EventTarget'.","category":1,"code":2420,"next":[{"messageText":"Property 'dispatchEvent' is missing in type 'AbortSignal' but required in type 'EventTarget'.","category":1,"code":2741}]},"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":342698,"length":37,"messageText":"'dispatchEvent' is declared here.","category":3,"code":2728}]},{"start":14091,"length":15,"messageText":"Duplicate identifier 'AbortController'.","category":1,"code":2300,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":60314,"length":15,"messageText":"'AbortController' was also declared here.","category":3,"code":6203},{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":60857,"length":15,"messageText":"and here.","category":3,"code":6204}]},{"start":14712,"length":5,"messageText":"Subsequent property declarations must have the same type. Property 'error' must be of type 'DOMException', but here has type 'Error'.","category":1,"code":2717,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":345928,"length":5,"messageText":"'error' was also declared here.","category":3,"code":6203}]},{"start":15230,"length":10,"messageText":"Subsequent property declarations must have the same type. Property 'readyState' must be of type '0 | 1 | 2', but here has type 'number'.","category":1,"code":2717,"relatedInformation":[{"file":"../../node_modules/typescript/lib/lib.dom.d.ts","start":347122,"length":10,"messageText":"'readyState' was also declared here.","category":3,"code":6203}]}]],[178,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[179,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[181,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[183,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[184,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[185,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[186,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[189,[{"start":229,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[190,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[192,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307},{"start":7420,"length":3,"messageText":"Cannot find namespace 'JSX'.","category":1,"code":2503}]],[193,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[194,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[195,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[196,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[209,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[210,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[212,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307},{"start":3431,"length":3,"messageText":"Cannot find namespace 'JSX'.","category":1,"code":2503}]],[216,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[217,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[218,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[219,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[220,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[221,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[222,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[223,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[225,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[226,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[227,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[228,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[229,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[236,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[241,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[243,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[244,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]],[259,[{"start":234,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307}]]],"affectedFilesPendingEmit":[51,50],"emitSignatures":[50,51]},"version":"5.5.4"}