Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Debug failure at walk #50675

Closed
derekstavis opened this issue Sep 7, 2022 · 18 comments · Fixed by #52667
Closed

Debug failure at walk #50675

derekstavis opened this issue Sep 7, 2022 · 18 comments · Fixed by #52667
Assignees
Labels
Bug A bug in TypeScript Crash For flagging bugs which are compiler or service crashes or unclean exits, rather than bad output Fix Available A PR has been opened for this issue Needs More Info The issue still hasn't been fully clarified Rescheduled This issue was previously scheduled to an earlier milestone

Comments

@derekstavis
Copy link

derekstavis commented Sep 7, 2022

Bug Report

Running tsc causes an error message:

|| Error: Debug Failure.
||     at walk (/Users/derek/Workspace/***/node_modules/typescript/lib/tsc.js:98559:38)
||     at Object.forEachChildRecursively (/Users/derek/Workspace/***/node_modules/typescript/lib/tsc.js:25491:27)
||     at /Users/derek/Workspace/***/node_modules/typescript/lib/tsc.js:98475:20
||     at runWithCancellationToken (/Users/derek/Workspace/***/node_modules/typescript/lib/tsc.js:98388:24)
||     at getJSSyntacticDiagnosticsForFile (/Users/derek/Workspace/***/node_modules/typescript/lib/tsc.js:98472:20)
||     at getSyntacticDiagnosticsForFile (/Users/derek/Workspace/***/node_modules/typescript/lib/tsc.js:98380:65)
||     at /Users/derek/Workspace/***/node_modules/typescript/lib/tsc.js:98339:24
||     at Object.flatMap (/Users/derek/Workspace/***/node_modules/typescript/lib/tsc.js:428:25)
||     at getDiagnosticsHelper (/Users/derek/Workspace/***/node_modules/typescript/lib/tsc.js:98335:56)
||     at Object.getSyntacticDiagnostics (/Users/derek/Workspace/***/node_modules/typescript/lib/tsc.js:98343:20)

🔎 Search Terms

Debug failure

🕗 Version & Regression Information

  • This is a crash
  • This changed between versions 4.3.5 and 4.8.2

💻 Code

tsconfig.js

{
  "extends": "expo/tsconfig.base",
  "compilerOptions": {
    "sourceMap": true,
    "strict": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "baseUrl": ".",
    "paths": {
      "@/*": ["src/*"]
    }
  },
  "exclude": ["jest.config.js", "babel.config.js", "app.config.js"],
  "ts-node": {
    "require": ["tsconfig-paths/register"],
    "transpileOnly": true,
    "module": "commonjs",
    "target": "es2015",
    "esModuleInterop": true
  }
}

🙁 Actual behavior

Running tsc gives a Debug failure error.

🙂 Expected behavior

Running tsc should have worked without an error

@jakebailey jakebailey added Bug A bug in TypeScript Crash For flagging bugs which are compiler or service crashes or unclean exits, rather than bad output labels Sep 7, 2022
@jakebailey jakebailey self-assigned this Sep 7, 2022
@jakebailey jakebailey added this to the TypeScript 4.9.0 milestone Sep 7, 2022
@jakebailey
Copy link
Member

Do you have a code sample for this? What version of TS are you on? The line number you have doesn't line up with 4.8.2.

@derekstavis
Copy link
Author

yarn why typescript

yarn why v1.22.19
[1/4] 🤔  Why do we have the module "typescript"...?
[2/4] 🚚  Initialising dependency graph...
[3/4] 🔍  Finding dependency...
[4/4] 🚡  Calculating file sizes...
=> Found "typescript@4.8.2"
info Has been hoisted to "typescript"
info This module exists because it's specified in "devDependencies".
info Disk size without dependencies: "66.29MB"
info Disk size with unique dependencies: "66.29MB"
info Disk size with transitive dependencies: "66.29MB"
info Number of shared dependencies: 0

which tsc

/Users/derek/Workspace/***/node_modules/.bin/tsc

@derekstavis
Copy link
Author

derekstavis commented Sep 7, 2022

I don't have a code sample since this is just running tsc at the repo's root. Let me know what would be the most useful information, glad to provide you!

@jakebailey
Copy link
Member

Agh, I got the line numbers wrong. The code in question is:

case SyntaxKind.TypeAssertionExpression:
Debug.fail(); // Won't parse these in a JS file anyway, as they are interpreted as JSX.

Can you run tsc --listFiles and see if there are any files in your project that are pure JS?

@derekstavis
Copy link
Author

Unfortunately the error happens as well when --listFiles is used:

> tsc --listFiles

/Users/derek/Workspace/***/node_modules/typescript/lib/tsc.js:98394
                throw e;
                ^

Error: Debug Failure.
    at walk (/Users/derek/Workspace/***/node_modules/typescript/lib/tsc.js:98559:38)
    ....

@jakebailey
Copy link
Member

Is this repo accessible anywhere for testing? It's fine if the "code sample" is the whole repo, it's just hard to diagnose this without anything to go on.

@hirbod
Copy link

hirbod commented Sep 9, 2022

I am having the same exact issue. Tried with 4.7.4 and 4.8.3

/Users/****/node_modules/typescript/lib/tsc.js:98438
                throw e;
                ^

Error: Debug Failure.
    at walk (/Users/****/node_modules/typescript/lib/tsc.js:98603:38)
    at Object.forEachChildRecursively (/Users/****/node_modules/typescript/lib/tsc.js:25491:27)
    at /Users/****/node_modules/typescript/lib/tsc.js:98519:20
    at runWithCancellationToken (/Users/****/node_modules/typescript/lib/tsc.js:98432:24)
    at getJSSyntacticDiagnosticsForFile (/Users/****/node_modules/typescript/lib/tsc.js:98516:20)
    at getSyntacticDiagnosticsForFile (/Users/****/node_modules/typescript/lib/tsc.js:98424:65)
    at /Users/****/node_modules/typescript/lib/tsc.js:98383:24
    at Object.flatMap (/Users/****/node_modules/typescript/lib/tsc.js:428:25)
    at getDiagnosticsHelper (/Users/****/node_modules/typescript/lib/tsc.js:98379:56)
    at Object.getSyntacticDiagnostics (/Users/****/node_modules/typescript/lib/tsc.js:98387:20)

Also tried to listFiles etc, I am getting the same issue

@hirbod
Copy link

hirbod commented Sep 9, 2022

Removing "extends": "expo/tsconfig.base" will get rid of the issue, but it introduces other problems and wasn't the case before.

@hirbod
Copy link

hirbod commented Sep 9, 2022

After a bit further digging, turning allowJs from true to false made the issue go away, but its not a fix though

@jakebailey
Copy link
Member

Yes, definitely, but what I need is to find that file.

@hirbod
Copy link

hirbod commented Sep 9, 2022

@jakebailey any other idea how I could help you to find the issue?

@jakebailey
Copy link
Member

If you can't provide the repo, the only thing I can suggest would be to try and exclude JS files until the offending one is found and it no longer crashes.

@derekstavis
Copy link
Author

Removing the extends and putting allowJs: false also made the crash go away for me. I don't have any JS files on my project, so I'm assuming that it's coming from somewhere else:

tsc --listFiles

Full command output collapsed for readability
error TS2688: Cannot find type definition file for 'build'.
  The file is in the program because:
    Entry point for implicit type library 'build'
error TS2688: Cannot find type definition file for 'examples'.
  The file is in the program because:
    Entry point for implicit type library 'examples'
error TS2688: Cannot find type definition file for 'lib'.
  The file is in the program because:
    Entry point for implicit type library 'lib'
error TS2688: Cannot find type definition file for 'node-addon-api'.
  The file is in the program because:
    Entry point for implicit type library 'node-addon-api'
error TS2688: Cannot find type definition file for 'test'.
  The file is in the program because:
    Entry point for implicit type library 'test'
***/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.es2017.object.d.ts
***/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts
***/node_modules/typescript/lib/lib.es2017.string.d.ts
***/node_modules/typescript/lib/lib.es2017.intl.d.ts
***/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts
***/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts
***/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts
***/node_modules/typescript/lib/lib.es2018.intl.d.ts
***/node_modules/typescript/lib/lib.es2018.promise.d.ts
***/node_modules/typescript/lib/lib.es2018.regexp.d.ts
***/node_modules/typescript/lib/lib.es2019.array.d.ts
***/node_modules/typescript/lib/lib.es2019.object.d.ts
***/node_modules/typescript/lib/lib.es2019.string.d.ts
***/node_modules/typescript/lib/lib.es2019.symbol.d.ts
***/node_modules/typescript/lib/lib.es2020.bigint.d.ts
***/node_modules/typescript/lib/lib.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/react-native-gesture-handler/lib/typescript/Directions.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/State.d.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
***/node_modules/@types/react-native/globals.d.ts
***/node_modules/@types/react-native/legacy-properties.d.ts
***/node_modules/@types/react-native/BatchedBridge.d.ts
***/node_modules/@types/react-native/Codegen.d.ts
***/node_modules/@types/react-native/Devtools.d.ts
***/node_modules/@types/react-native/LaunchScreen.d.ts
***/node_modules/@types/react-native/index.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/gestureHandlerRootHOC.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/GestureHandlerRootView.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/TouchEventType.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/typeUtils.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/gestureHandlerCommon.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/FlingGestureHandler.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/ForceTouchGestureHandler.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/gestureStateManager.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/LongPressGestureHandler.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/PanGestureHandler.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/PinchGestureHandler.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/RotationGestureHandler.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/TapGestureHandler.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/NativeViewGestureHandler.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/gesture.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/forceTouchGesture.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/panGesture.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/pinchGesture.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/createNativeWrapper.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/reanimatedWrapper.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/gestureComposition.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/GestureDetector.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/flingGesture.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/longPressGesture.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/rotationGesture.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/tapGesture.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/nativeGesture.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/manualGesture.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/gestureObjects.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/components/GestureHandlerButton.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/components/GestureButtons.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/components/touchables/TouchableNativeFeedback.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/components/touchables/TouchableNativeFeedback.android.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/components/touchables/GenericTouchable.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/components/touchables/TouchableWithoutFeedback.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/components/touchables/TouchableOpacity.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/components/touchables/TouchableHighlight.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/components/touchables/index.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/components/GestureComponents.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/handlers/gestureHandlerTypesCompat.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/components/Swipeable.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/components/DrawerLayout.d.ts
***/node_modules/react-native-gesture-handler/lib/typescript/index.d.ts
***/polyfills.ts
***/node_modules/@sentry/types/types/attachment.d.ts
***/node_modules/@sentry/types/types/datacategory.d.ts
***/node_modules/@sentry/types/types/clientreport.d.ts
***/node_modules/@sentry/types/types/dsn.d.ts
***/node_modules/@sentry/types/types/severity.d.ts
***/node_modules/@sentry/types/types/breadcrumb.d.ts
***/node_modules/@sentry/types/types/context.d.ts
***/node_modules/@sentry/types/types/debugMeta.d.ts
***/node_modules/@sentry/types/types/mechanism.d.ts
***/node_modules/@sentry/types/types/stackframe.d.ts
***/node_modules/@sentry/types/types/stacktrace.d.ts
***/node_modules/@sentry/types/types/exception.d.ts
***/node_modules/@sentry/types/types/extra.d.ts
***/node_modules/@sentry/types/types/measurement.d.ts
***/node_modules/@sentry/types/types/request.d.ts
***/node_modules/@sentry/types/types/misc.d.ts
***/node_modules/@sentry/types/types/eventprocessor.d.ts
***/node_modules/@sentry/types/types/user.d.ts
***/node_modules/@sentry/types/types/session.d.ts
***/node_modules/@sentry/types/types/transaction.d.ts
***/node_modules/@sentry/types/types/span.d.ts
***/node_modules/@sentry/types/types/scope.d.ts
***/node_modules/@sentry/types/types/package.d.ts
***/node_modules/@sentry/types/types/sdkinfo.d.ts
***/node_modules/@sentry/types/types/event.d.ts
***/node_modules/@sentry/types/types/envelope.d.ts
***/node_modules/@sentry/types/types/baggage.d.ts
***/node_modules/@sentry/types/types/hub.d.ts
***/node_modules/@sentry/types/types/integration.d.ts
***/node_modules/@sentry/types/types/sdkmetadata.d.ts
***/node_modules/@sentry/types/types/textencoder.d.ts
***/node_modules/@sentry/types/types/transport.d.ts
***/node_modules/@sentry/types/types/options.d.ts
***/node_modules/@sentry/types/types/client.d.ts
***/node_modules/@sentry/types/types/error.d.ts
***/node_modules/@sentry/types/types/globals.d.ts
***/node_modules/@sentry/types/types/polymorphics.d.ts
***/node_modules/@sentry/types/types/runtime.d.ts
***/node_modules/@sentry/types/types/thread.d.ts
***/node_modules/@sentry/types/types/wrappedfunction.d.ts
***/node_modules/@sentry/types/types/index.d.ts
***/node_modules/@sentry/core/types/sdk.d.ts
***/node_modules/@sentry/hub/types/scope.d.ts
***/node_modules/@sentry/hub/types/hub.d.ts
***/node_modules/@sentry/hub/types/session.d.ts
***/node_modules/@sentry/hub/types/sessionflusher.d.ts
***/node_modules/@sentry/hub/types/exports.d.ts
***/node_modules/@sentry/hub/types/index.d.ts
***/node_modules/@sentry/core/types/api.d.ts
***/node_modules/@sentry/core/types/integration.d.ts
***/node_modules/@sentry/core/types/baseclient.d.ts
***/node_modules/@sentry/utils/types/browser.d.ts
***/node_modules/@sentry/utils/types/dsn.d.ts
***/node_modules/@sentry/utils/types/error.d.ts
***/node_modules/@sentry/utils/types/global.d.ts
***/node_modules/@sentry/utils/types/instrument.d.ts
***/node_modules/@sentry/utils/types/is.d.ts
***/node_modules/@sentry/utils/types/logger.d.ts
***/node_modules/@sentry/utils/types/memo.d.ts
***/node_modules/@sentry/utils/types/misc.d.ts
***/node_modules/@sentry/utils/types/node.d.ts
***/node_modules/@sentry/utils/types/normalize.d.ts
***/node_modules/@sentry/utils/types/object.d.ts
***/node_modules/@sentry/utils/types/path.d.ts
***/node_modules/@sentry/utils/types/promisebuffer.d.ts
***/node_modules/@sentry/utils/types/requestdata.d.ts
***/node_modules/@sentry/utils/types/severity.d.ts
***/node_modules/@sentry/utils/types/stacktrace.d.ts
***/node_modules/@sentry/utils/types/string.d.ts
***/node_modules/@sentry/utils/types/supports.d.ts
***/node_modules/@sentry/utils/types/syncpromise.d.ts
***/node_modules/@sentry/utils/types/time.d.ts
***/node_modules/@sentry/utils/types/tracing.d.ts
***/node_modules/@sentry/utils/types/env.d.ts
***/node_modules/@sentry/utils/types/envelope.d.ts
***/node_modules/@sentry/utils/types/clientreport.d.ts
***/node_modules/@sentry/utils/types/ratelimit.d.ts
***/node_modules/@sentry/utils/types/baggage.d.ts
***/node_modules/@sentry/utils/types/index.d.ts
***/node_modules/@sentry/core/types/transports/base.d.ts
***/node_modules/@sentry/core/types/version.d.ts
***/node_modules/@sentry/core/types/integrations/functiontostring.d.ts
***/node_modules/@sentry/core/types/integrations/inboundfilters.d.ts
***/node_modules/@sentry/core/types/integrations/index.d.ts
***/node_modules/@sentry/core/types/index.d.ts
***/node_modules/@sentry/browser/types/transports/types.d.ts
***/node_modules/@sentry/browser/types/client.d.ts
***/node_modules/@sentry/browser/types/helpers.d.ts
***/node_modules/@sentry/browser/types/transports/utils.d.ts
***/node_modules/@sentry/browser/types/transports/fetch.d.ts
***/node_modules/@sentry/browser/types/transports/xhr.d.ts
***/node_modules/@sentry/browser/types/transports/index.d.ts
***/node_modules/@sentry/browser/types/stack-parsers.d.ts
***/node_modules/@sentry/browser/types/integrations/globalhandlers.d.ts
***/node_modules/@sentry/browser/types/integrations/trycatch.d.ts
***/node_modules/@sentry/browser/types/integrations/breadcrumbs.d.ts
***/node_modules/@sentry/browser/types/integrations/linkederrors.d.ts
***/node_modules/@sentry/browser/types/integrations/httpcontext.d.ts
***/node_modules/@sentry/browser/types/integrations/dedupe.d.ts
***/node_modules/@sentry/browser/types/integrations/index.d.ts
***/node_modules/@sentry/browser/types/sdk.d.ts
***/node_modules/@sentry/browser/types/exports.d.ts
***/node_modules/@sentry/browser/types/index.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/tracing/types/span.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/tracing/types/transaction.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/tracing/types/idletransaction.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/tracing/types/hubextensions.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/tracing/types/integrations/node/express.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/tracing/types/integrations/node/postgres.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/tracing/types/integrations/node/mysql.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/tracing/types/integrations/node/mongo.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/tracing/types/integrations/node/prisma.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/tracing/types/integrations/node/graphql.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/tracing/types/integrations/node/apollo.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/tracing/types/browser/request.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/tracing/types/browser/browsertracing.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/tracing/types/browser/index.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/tracing/types/integrations/index.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/tracing/types/spanstatus.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/tracing/types/utils.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/tracing/types/index.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react/types/sdk.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react/types/profiler.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react/types/errorboundary.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react/types/redux.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react/types/types.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react/types/reactrouterv3.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react/types/reactrouter.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react/types/reactrouterv6.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react/types/index.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react-native/dist/js/integrations/debugsymbolicator.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react-native/dist/js/integrations/devicecontext.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react-native/dist/js/integrations/reactnativeerrorhandlers.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react-native/dist/js/integrations/release.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react-native/dist/js/integrations/eventorigin.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react-native/dist/js/integrations/sdkinfo.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react-native/dist/js/integrations/index.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react-native/dist/js/version.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react-native/dist/js/touchevents.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react-native/dist/js/options.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react-native/dist/js/client.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react-native/dist/js/sdk.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react-native/dist/js/tracing/types.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react-native/dist/js/tracing/routingInstrumentation.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react-native/dist/js/tracing/nativeframes.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react-native/dist/js/tracing/stalltracking.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react-native/dist/js/tracing/reactnativetracing.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react-native/dist/js/tracing/reactnavigation.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react-native/dist/js/tracing/reactnavigationv4.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react-native/dist/js/tracing/reactnativenavigation.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react-native/dist/js/tracing/reactnativeprofiler.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react-native/dist/js/tracing/index.d.ts
***/node_modules/sentry-expo/node_modules/@sentry/react-native/dist/js/index.d.ts
***/node_modules/sentry-expo/build/utils.d.ts
***/node_modules/sentry-expo/build/sentry.d.ts
***/node_modules/sentry-expo/build/index.d.ts
***/node_modules/react-native-ble-plx/index.d.ts
***/node_modules/mitt/index.d.ts
***/node_modules/reactotron-core-client/dist/types/client-options.d.ts
***/node_modules/reactotron-core-client/dist/types/plugins/repl.d.ts
***/node_modules/reactotron-core-client/dist/types/reactotron-core-client.d.ts
***/node_modules/reactotron-react-native/dist/types/plugins/asyncStorage.d.ts
***/node_modules/reactotron-react-native/dist/types/plugins/overlay/index.d.ts
***/node_modules/reactotron-react-native/dist/types/plugins/openInEditor.d.ts
***/node_modules/reactotron-react-native/dist/types/plugins/trackGlobalErrors.d.ts
***/node_modules/reactotron-react-native/dist/types/plugins/networking.d.ts
***/node_modules/reactotron-react-native/dist/types/plugins/storybook/index.d.ts
***/node_modules/reactotron-react-native/dist/types/plugins/devTools.d.ts
***/node_modules/reactotron-react-native/dist/types/reactotron-react-native.d.ts
***/node_modules/micro-memoize/src/utils.ts
***/node_modules/micro-memoize/src/Cache.ts
***/node_modules/micro-memoize/src/types.ts
***/node_modules/moize/index.d.ts
***/node_modules/async-mutex/lib/MutexInterface.d.ts
***/node_modules/async-mutex/lib/Mutex.d.ts
***/node_modules/async-mutex/lib/SemaphoreInterface.d.ts
***/node_modules/async-mutex/lib/Semaphore.d.ts
***/node_modules/async-mutex/lib/withTimeout.d.ts
***/node_modules/async-mutex/lib/tryAcquire.d.ts
***/node_modules/async-mutex/lib/errors.d.ts
***/node_modules/async-mutex/lib/index.d.ts
***/node_modules/date-fns/typings.d.ts
***/node_modules/@expo/config-types/build/ExpoConfig.d.ts
***/node_modules/expo-constants/build/Constants.types.d.ts
***/node_modules/expo-constants/build/Constants.d.ts
***/node_modules/ts-debounce/dist/src/index.d.ts
***/node_modules/expo-application/build/Application.d.ts
***/node_modules/expo-device/build/Device.types.d.ts
***/node_modules/expo-device/build/Device.d.ts
***/node_modules/@types/qs/index.d.ts
***/node_modules/@lukeed/uuid/index.d.ts
***/node_modules/@react-native-async-storage/async-storage/lib/typescript/types.d.ts
***/node_modules/@react-native-async-storage/async-storage/lib/typescript/AsyncStorage.d.ts
***/node_modules/@react-native-async-storage/async-storage/lib/typescript/hooks.d.ts
***/node_modules/@react-native-async-storage/async-storage/lib/typescript/index.d.ts
***/src/developer/appender.ts
***/node_modules/chalk/index.d.ts
***/src/developer/logger.ts
***/src/device/addresses.ts
***/src/device/demo.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/events.d.ts
***/node_modules/@types/node/fs.d.ts
***/node_modules/@types/node/fs/promises.d.ts
***/node_modules/@types/node/http.d.ts
***/node_modules/@types/node/http2.d.ts
***/node_modules/@types/node/https.d.ts
***/node_modules/@types/node/inspector.d.ts
***/node_modules/@types/node/module.d.ts
***/node_modules/@types/node/net.d.ts
***/node_modules/@types/node/os.d.ts
***/node_modules/@types/node/path.d.ts
***/node_modules/@types/node/perf_hooks.d.ts
***/node_modules/@types/node/process.d.ts
***/node_modules/@types/node/punycode.d.ts
***/node_modules/@types/node/querystring.d.ts
***/node_modules/@types/node/readline.d.ts
***/node_modules/@types/node/repl.d.ts
***/node_modules/@types/node/stream.d.ts
***/node_modules/@types/node/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/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/polycrc/index.d.ts
***/node_modules/buffer/index.d.ts
***/src/protocol/modbus.ts
***/node_modules/@mobily/ts-belt/dist/types/pipe.d.ts
***/node_modules/@mobily/ts-belt/dist/types/flow.d.ts
***/node_modules/@mobily/ts-belt/dist/types/global.d.ts
***/node_modules/@mobily/ts-belt/dist/types/types.d.ts
***/node_modules/@mobily/ts-belt/dist/types/Result/index.d.ts
***/node_modules/@mobily/ts-belt/dist/types/Option/index.d.ts
***/node_modules/@mobily/ts-belt/dist/types/Function/index.d.ts
***/node_modules/@mobily/ts-belt/dist/types/Array/index.d.ts
***/node_modules/@mobily/ts-belt/dist/types/Guards/index.d.ts
***/node_modules/@mobily/ts-belt/dist/types/String/index.d.ts
***/node_modules/@mobily/ts-belt/dist/types/Dict/index.d.ts
***/node_modules/@mobily/ts-belt/dist/types/Bool/index.d.ts
***/node_modules/@mobily/ts-belt/dist/types/Number/index.d.ts
***/node_modules/@mobily/ts-belt/dist/types/index.d.ts
***/src/bluetooth/demo.ts
***/src/bluetooth/index.ts
***/node_modules/eventemitter3/index.d.ts
***/node_modules/p-queue-compat/dist/queue.d.ts
***/node_modules/p-queue-compat/dist/options.d.ts
***/node_modules/p-queue-compat/dist/priority-queue.d.ts
***/node_modules/p-queue-compat/dist/index.d.ts
***/node_modules/p-timeout/index.d.ts
***/src/protocol/bluetooth.ts
***/src/device/readParameter.ts
***/src/device/writeParameter.ts
***/src/device/index.ts
***/src/constants.ts
***/src/developer/sentry.ts
***/src/developer/reactotron.ts
***/src/developer/index.ts
***/node_modules/reflect-metadata/index.d.ts
***/node_modules/typeorm/browser/metadata/types/RelationTypes.d.ts
***/node_modules/typeorm/browser/metadata/types/DeferrableType.d.ts
***/node_modules/typeorm/browser/metadata/types/OnDeleteType.d.ts
***/node_modules/typeorm/browser/metadata/types/OnUpdateType.d.ts
***/node_modules/typeorm/browser/decorator/options/RelationOptions.d.ts
***/node_modules/typeorm/browser/metadata/types/PropertyTypeInFunction.d.ts
***/node_modules/typeorm/browser/metadata/types/RelationTypeInFunction.d.ts
***/node_modules/typeorm/browser/metadata-args/RelationMetadataArgs.d.ts
***/node_modules/typeorm/browser/driver/types/ColumnTypes.d.ts
***/node_modules/typeorm/browser/decorator/options/ValueTransformer.d.ts
***/node_modules/typeorm/browser/decorator/options/ColumnCommonOptions.d.ts
***/node_modules/typeorm/browser/decorator/options/ColumnOptions.d.ts
***/node_modules/typeorm/browser/metadata-args/types/ColumnMode.d.ts
***/node_modules/typeorm/browser/metadata-args/ColumnMetadataArgs.d.ts
***/node_modules/typeorm/browser/common/ObjectLiteral.d.ts
***/node_modules/typeorm/browser/schema-builder/options/TableColumnOptions.d.ts
***/node_modules/typeorm/browser/schema-builder/table/TableColumn.d.ts
***/node_modules/typeorm/browser/naming-strategy/NamingStrategyInterface.d.ts
***/node_modules/typeorm/browser/metadata/ForeignKeyMetadata.d.ts
***/node_modules/typeorm/browser/metadata/RelationMetadata.d.ts
***/node_modules/typeorm/browser/metadata-args/EmbeddedMetadataArgs.d.ts
***/node_modules/typeorm/browser/metadata-args/RelationIdMetadataArgs.d.ts
***/node_modules/typeorm/browser/metadata/RelationIdMetadata.d.ts
***/node_modules/typeorm/browser/metadata/RelationCountMetadata.d.ts
***/node_modules/typeorm/browser/metadata/types/EventListenerTypes.d.ts
***/node_modules/typeorm/browser/metadata-args/EntityListenerMetadataArgs.d.ts
***/node_modules/typeorm/browser/metadata/EntityListenerMetadata.d.ts
***/node_modules/typeorm/browser/metadata-args/UniqueMetadataArgs.d.ts
***/node_modules/typeorm/browser/metadata/UniqueMetadata.d.ts
***/node_modules/typeorm/browser/metadata/EmbeddedMetadata.d.ts
***/node_modules/typeorm/browser/metadata/ColumnMetadata.d.ts
***/node_modules/typeorm/browser/driver/types/MappedColumnTypes.d.ts
***/node_modules/typeorm/browser/driver/Query.d.ts
***/node_modules/typeorm/browser/driver/SqlInMemory.d.ts
***/node_modules/typeorm/browser/schema-builder/SchemaBuilder.d.ts
***/node_modules/typeorm/browser/driver/types/DataTypeDefaults.d.ts
***/node_modules/typeorm/browser/entity-schema/EntitySchemaIndexOptions.d.ts
***/node_modules/typeorm/browser/decorator/options/SpatialColumnOptions.d.ts
***/node_modules/typeorm/browser/entity-schema/EntitySchemaColumnOptions.d.ts
***/node_modules/typeorm/browser/decorator/options/JoinColumnOptions.d.ts
***/node_modules/typeorm/browser/decorator/options/JoinTableMultipleColumnsOptions.d.ts
***/node_modules/typeorm/browser/decorator/options/JoinTableOptions.d.ts
***/node_modules/typeorm/browser/entity-schema/EntitySchemaRelationOptions.d.ts
***/node_modules/typeorm/browser/find-options/OrderByCondition.d.ts
***/node_modules/typeorm/browser/metadata/types/TableTypes.d.ts
***/node_modules/typeorm/browser/entity-schema/EntitySchemaUniqueOptions.d.ts
***/node_modules/typeorm/browser/entity-schema/EntitySchemaCheckOptions.d.ts
***/node_modules/typeorm/browser/entity-schema/EntitySchemaExclusionOptions.d.ts
***/node_modules/typeorm/browser/entity-schema/EntitySchemaOptions.d.ts
***/node_modules/typeorm/browser/entity-schema/EntitySchema.d.ts
***/node_modules/typeorm/browser/logger/LoggerOptions.d.ts
***/node_modules/typeorm/browser/driver/types/DatabaseType.d.ts
***/node_modules/typeorm/browser/logger/Logger.d.ts
***/node_modules/typeorm/browser/cache/QueryResultCacheOptions.d.ts
***/node_modules/typeorm/browser/cache/QueryResultCache.d.ts
***/node_modules/typeorm/browser/connection/BaseConnectionOptions.d.ts
***/node_modules/typeorm/browser/driver/types/ReplicationMode.d.ts
***/node_modules/typeorm/browser/schema-builder/options/ViewOptions.d.ts
***/node_modules/typeorm/browser/schema-builder/view/View.d.ts
***/node_modules/typeorm/browser/schema-builder/options/TableForeignKeyOptions.d.ts
***/node_modules/typeorm/browser/schema-builder/table/TableForeignKey.d.ts
***/node_modules/typeorm/browser/driver/Driver.d.ts
***/node_modules/typeorm/browser/common/EntityFieldsNames.d.ts
***/node_modules/typeorm/browser/find-options/JoinOptions.d.ts
***/node_modules/typeorm/browser/find-options/FindOperatorType.d.ts
***/node_modules/typeorm/browser/find-options/FindOperator.d.ts
***/node_modules/typeorm/browser/find-options/FindConditions.d.ts
***/node_modules/typeorm/browser/find-options/FindOneOptions.d.ts
***/node_modules/typeorm/browser/find-options/FindManyOptions.d.ts
***/node_modules/typeorm/browser/common/DeepPartial.d.ts
***/node_modules/typeorm/browser/repository/SaveOptions.d.ts
***/node_modules/typeorm/browser/repository/RemoveOptions.d.ts
***/node_modules/typeorm/browser/common/ObjectType.d.ts
***/node_modules/typeorm/browser/common/EntityTarget.d.ts
***/node_modules/typeorm/browser/platform/PlatformTools.d.ts
***/node_modules/typeorm/browser/driver/mongodb/typings.d.ts
***/node_modules/typeorm/browser/schema-builder/options/TableUniqueOptions.d.ts
***/node_modules/typeorm/browser/schema-builder/table/TableUnique.d.ts
***/node_modules/typeorm/browser/subscriber/event/TransactionCommitEvent.d.ts
***/node_modules/typeorm/browser/subscriber/event/TransactionRollbackEvent.d.ts
***/node_modules/typeorm/browser/subscriber/event/TransactionStartEvent.d.ts
***/node_modules/typeorm/browser/subscriber/event/UpdateEvent.d.ts
***/node_modules/typeorm/browser/subscriber/event/RemoveEvent.d.ts
***/node_modules/typeorm/browser/subscriber/event/InsertEvent.d.ts
***/node_modules/typeorm/browser/subscriber/event/LoadEvent.d.ts
***/node_modules/typeorm/browser/subscriber/EntitySubscriberInterface.d.ts
***/node_modules/typeorm/browser/subscriber/BroadcasterResult.d.ts
***/node_modules/typeorm/browser/subscriber/Broadcaster.d.ts
***/node_modules/typeorm/browser/schema-builder/options/TableCheckOptions.d.ts
***/node_modules/typeorm/browser/metadata-args/CheckMetadataArgs.d.ts
***/node_modules/typeorm/browser/metadata/CheckMetadata.d.ts
***/node_modules/typeorm/browser/schema-builder/table/TableCheck.d.ts
***/node_modules/typeorm/browser/schema-builder/options/TableExclusionOptions.d.ts
***/node_modules/typeorm/browser/metadata-args/ExclusionMetadataArgs.d.ts
***/node_modules/typeorm/browser/metadata/ExclusionMetadata.d.ts
***/node_modules/typeorm/browser/schema-builder/table/TableExclusion.d.ts
***/node_modules/typeorm/browser/driver/mongodb/MongoQueryRunner.d.ts
***/node_modules/typeorm/browser/query-builder/QueryPartialEntity.d.ts
***/node_modules/typeorm/browser/query-runner/QueryResult.d.ts
***/node_modules/typeorm/browser/query-builder/result/InsertResult.d.ts
***/node_modules/typeorm/browser/query-builder/result/UpdateResult.d.ts
***/node_modules/typeorm/browser/query-builder/result/DeleteResult.d.ts
***/node_modules/typeorm/browser/entity-manager/MongoEntityManager.d.ts
***/node_modules/typeorm/browser/repository/MongoRepository.d.ts
***/node_modules/typeorm/browser/repository/TreeRepository.d.ts
***/node_modules/typeorm/browser/query-builder/transformer/PlainObjectToNewEntityTransformer.d.ts
***/node_modules/typeorm/browser/driver/types/IsolationLevel.d.ts
***/node_modules/typeorm/browser/entity-manager/EntityManager.d.ts
***/node_modules/typeorm/browser/repository/Repository.d.ts
***/node_modules/typeorm/browser/migration/MigrationInterface.d.ts
***/node_modules/typeorm/browser/migration/Migration.d.ts
***/node_modules/typeorm/browser/driver/cockroachdb/CockroachConnectionCredentialsOptions.d.ts
***/node_modules/typeorm/browser/driver/cockroachdb/CockroachConnectionOptions.d.ts
***/node_modules/typeorm/browser/driver/mysql/MysqlConnectionCredentialsOptions.d.ts
***/node_modules/typeorm/browser/driver/mysql/MysqlConnectionOptions.d.ts
***/node_modules/typeorm/browser/driver/postgres/PostgresConnectionCredentialsOptions.d.ts
***/node_modules/typeorm/browser/driver/postgres/PostgresConnectionOptions.d.ts
***/node_modules/typeorm/browser/driver/sqlite/SqliteConnectionOptions.d.ts
***/node_modules/typeorm/browser/driver/sqlserver/authentication/DefaultAuthentication.d.ts
***/node_modules/typeorm/browser/driver/sqlserver/authentication/AzureActiveDirectoryAccessTokenAuthentication.d.ts
***/node_modules/typeorm/browser/driver/sqlserver/authentication/AzureActiveDirectoryMsiAppServiceAuthentication.d.ts
***/node_modules/typeorm/browser/driver/sqlserver/authentication/AzureActiveDirectoryMsiVmAuthentication.d.ts
***/node_modules/typeorm/browser/driver/sqlserver/authentication/AzureActiveDirectoryPasswordAuthentication.d.ts
***/node_modules/typeorm/browser/driver/sqlserver/authentication/AzureActiveDirectoryServicePrincipalSecret.d.ts
***/node_modules/typeorm/browser/driver/sqlserver/authentication/NtlmAuthentication.d.ts
***/node_modules/typeorm/browser/driver/sqlserver/SqlServerConnectionCredentialsOptions.d.ts
***/node_modules/typeorm/browser/driver/sqlserver/SqlServerConnectionOptions.d.ts
***/node_modules/typeorm/browser/driver/oracle/OracleConnectionCredentialsOptions.d.ts
***/node_modules/typeorm/browser/driver/oracle/OracleConnectionOptions.d.ts
***/node_modules/typeorm/browser/driver/mongodb/MongoConnectionOptions.d.ts
***/node_modules/typeorm/browser/driver/cordova/CordovaConnectionOptions.d.ts
***/node_modules/typeorm/browser/driver/sqljs/SqljsConnectionOptions.d.ts
***/node_modules/typeorm/browser/driver/react-native/ReactNativeConnectionOptions.d.ts
***/node_modules/typeorm/browser/driver/nativescript/NativescriptConnectionOptions.d.ts
***/node_modules/typeorm/browser/driver/expo/ExpoConnectionOptions.d.ts
***/node_modules/typeorm/browser/driver/aurora-data-api/AuroraDataApiConnectionCredentialsOptions.d.ts
***/node_modules/typeorm/browser/driver/aurora-data-api/AuroraDataApiConnectionOptions.d.ts
***/node_modules/typeorm/browser/driver/sap/SapConnectionCredentialsOptions.d.ts
***/node_modules/typeorm/browser/driver/sap/SapConnectionOptions.d.ts
***/node_modules/typeorm/browser/driver/aurora-data-api-pg/AuroraDataApiPostgresConnectionOptions.d.ts
***/node_modules/typeorm/browser/driver/better-sqlite3/BetterSqlite3ConnectionOptions.d.ts
***/node_modules/typeorm/browser/driver/capacitor/CapacitorConnectionOptions.d.ts
***/node_modules/typeorm/browser/connection/ConnectionOptions.d.ts
***/node_modules/typeorm/browser/entity-manager/SqljsEntityManager.d.ts
***/node_modules/typeorm/browser/query-builder/RelationLoader.d.ts
***/node_modules/typeorm/browser/connection/Connection.d.ts
***/node_modules/typeorm/browser/metadata-args/TableMetadataArgs.d.ts
***/node_modules/typeorm/browser/metadata/types/TreeTypes.d.ts
***/node_modules/typeorm/browser/metadata/types/ClosureTreeOptions.d.ts
***/node_modules/typeorm/browser/metadata-args/TreeMetadataArgs.d.ts
***/node_modules/typeorm/browser/metadata/EntityMetadata.d.ts
***/node_modules/typeorm/browser/metadata-args/IndexMetadataArgs.d.ts
***/node_modules/typeorm/browser/metadata/IndexMetadata.d.ts
***/node_modules/typeorm/browser/schema-builder/options/TableIndexOptions.d.ts
***/node_modules/typeorm/browser/schema-builder/table/TableIndex.d.ts
***/node_modules/typeorm/browser/schema-builder/options/TableOptions.d.ts
***/node_modules/typeorm/browser/schema-builder/table/Table.d.ts
***/node_modules/typeorm/browser/query-runner/QueryRunner.d.ts
***/node_modules/typeorm/browser/query-builder/Alias.d.ts
***/node_modules/typeorm/browser/query-builder/JoinAttribute.d.ts
***/node_modules/typeorm/browser/query-builder/relation-id/RelationIdAttribute.d.ts
***/node_modules/typeorm/browser/query-builder/relation-count/RelationCountAttribute.d.ts
***/node_modules/typeorm/browser/query-builder/SelectQuery.d.ts
***/node_modules/typeorm/browser/query-builder/SelectQueryBuilderOption.d.ts
***/node_modules/typeorm/browser/query-builder/WhereClause.d.ts
***/node_modules/typeorm/browser/query-builder/QueryExpressionMap.d.ts
***/node_modules/typeorm/browser/query-builder/Brackets.d.ts
***/node_modules/typeorm/browser/query-builder/WhereExpressionBuilder.d.ts
***/node_modules/typeorm/browser/query-builder/UpdateQueryBuilder.d.ts
***/node_modules/typeorm/browser/query-builder/DeleteQueryBuilder.d.ts
***/node_modules/typeorm/browser/query-builder/SoftDeleteQueryBuilder.d.ts
***/node_modules/typeorm/browser/query-builder/InsertQueryBuilder.d.ts
***/node_modules/typeorm/browser/query-builder/RelationQueryBuilder.d.ts
***/node_modules/typeorm/browser/query-builder/QueryBuilder.d.ts
***/node_modules/typeorm/browser/query-builder/SelectQueryBuilder.d.ts
***/node_modules/typeorm/browser/metadata-args/RelationCountMetadataArgs.d.ts
***/node_modules/typeorm/browser/metadata-args/NamingStrategyMetadataArgs.d.ts
***/node_modules/typeorm/browser/metadata-args/JoinColumnMetadataArgs.d.ts
***/node_modules/typeorm/browser/metadata-args/JoinTableMetadataArgs.d.ts
***/node_modules/typeorm/browser/metadata-args/EntitySubscriberMetadataArgs.d.ts
***/node_modules/typeorm/browser/metadata-args/InheritanceMetadataArgs.d.ts
***/node_modules/typeorm/browser/metadata-args/DiscriminatorValueMetadataArgs.d.ts
***/node_modules/typeorm/browser/metadata-args/EntityRepositoryMetadataArgs.d.ts
***/node_modules/typeorm/browser/metadata-args/TransactionEntityMetadataArgs.d.ts
***/node_modules/typeorm/browser/metadata-args/TransactionRepositoryMetadataArgs.d.ts
***/node_modules/typeorm/browser/metadata-args/GeneratedMetadataArgs.d.ts
***/node_modules/typeorm/browser/metadata-args/MetadataArgsStorage.d.ts
***/node_modules/typeorm/browser/connection/ConnectionManager.d.ts
***/node_modules/typeorm/browser/globals.d.ts
***/node_modules/typeorm/browser/container.d.ts
***/node_modules/typeorm/browser/error/TypeORMError.d.ts
***/node_modules/typeorm/browser/error/CannotReflectMethodParameterTypeError.d.ts
***/node_modules/typeorm/browser/error/AlreadyHasActiveConnectionError.d.ts
***/node_modules/typeorm/browser/persistence/SubjectChangeMap.d.ts
***/node_modules/typeorm/browser/persistence/Subject.d.ts
***/node_modules/typeorm/browser/error/SubjectWithoutIdentifierError.d.ts
***/node_modules/typeorm/browser/error/CannotConnectAlreadyConnectedError.d.ts
***/node_modules/typeorm/browser/error/LockNotSupportedOnGivenDriverError.d.ts
***/node_modules/typeorm/browser/error/ConnectionIsNotSetError.d.ts
***/node_modules/typeorm/browser/error/CannotCreateEntityIdMapError.d.ts
***/node_modules/typeorm/browser/error/MetadataAlreadyExistsError.d.ts
***/node_modules/typeorm/browser/error/CannotDetermineEntityError.d.ts
***/node_modules/typeorm/browser/error/UpdateValuesMissingError.d.ts
***/node_modules/typeorm/browser/error/TreeRepositoryNotSupportedError.d.ts
***/node_modules/typeorm/browser/error/CustomRepositoryNotFoundError.d.ts
***/node_modules/typeorm/browser/error/TransactionNotStartedError.d.ts
***/node_modules/typeorm/browser/error/TransactionAlreadyStartedError.d.ts
***/node_modules/typeorm/browser/error/EntityNotFoundError.d.ts
***/node_modules/typeorm/browser/error/EntityMetadataNotFoundError.d.ts
***/node_modules/typeorm/browser/error/MustBeEntityError.d.ts
***/node_modules/typeorm/browser/error/OptimisticLockVersionMismatchError.d.ts
***/node_modules/typeorm/browser/error/LimitOnUpdateNotSupportedError.d.ts
***/node_modules/typeorm/browser/error/PrimaryColumnCannotBeNullableError.d.ts
***/node_modules/typeorm/browser/error/CustomRepositoryCannotInheritRepositoryError.d.ts
***/node_modules/typeorm/browser/error/QueryRunnerProviderAlreadyReleasedError.d.ts
***/node_modules/typeorm/browser/error/CannotAttachTreeChildrenEntityError.d.ts
***/node_modules/typeorm/browser/error/CustomRepositoryDoesNotHaveEntityError.d.ts
***/node_modules/typeorm/browser/error/MissingDeleteDateColumnError.d.ts
***/node_modules/typeorm/browser/error/NoConnectionForRepositoryError.d.ts
***/node_modules/typeorm/browser/error/CircularRelationsError.d.ts
***/node_modules/typeorm/browser/error/ReturningStatementNotSupportedError.d.ts
***/node_modules/typeorm/browser/error/UsingJoinTableIsNotAllowedError.d.ts
***/node_modules/typeorm/browser/error/MissingJoinColumnError.d.ts
***/node_modules/typeorm/browser/error/MissingPrimaryColumnError.d.ts
***/node_modules/typeorm/browser/error/EntityColumnNotFound.d.ts
***/node_modules/typeorm/browser/error/MissingDriverError.d.ts
***/node_modules/typeorm/browser/error/DriverPackageNotInstalledError.d.ts
***/node_modules/typeorm/browser/error/CannotGetEntityManagerNotConnectedError.d.ts
***/node_modules/typeorm/browser/error/ConnectionNotFoundError.d.ts
***/node_modules/typeorm/browser/error/NoVersionOrUpdateDateColumnError.d.ts
***/node_modules/typeorm/browser/error/InsertValuesMissingError.d.ts
***/node_modules/typeorm/browser/error/OptimisticLockCanNotBeUsedError.d.ts
***/node_modules/typeorm/browser/error/MetadataWithSuchNameAlreadyExistsError.d.ts
***/node_modules/typeorm/browser/error/DriverOptionNotSetError.d.ts
***/node_modules/typeorm/browser/error/FindRelationsNotFoundError.d.ts
***/node_modules/typeorm/browser/error/RepositoryNotFoundError.d.ts
***/node_modules/typeorm/browser/error/NamingStrategyNotFoundError.d.ts
***/node_modules/typeorm/browser/error/PessimisticLockTransactionRequiredError.d.ts
***/node_modules/typeorm/browser/error/RepositoryNotTreeError.d.ts
***/node_modules/typeorm/browser/error/DataTypeNotSupportedError.d.ts
***/node_modules/typeorm/browser/error/InitializedRelationError.d.ts
***/node_modules/typeorm/browser/error/MissingJoinTableError.d.ts
***/node_modules/typeorm/browser/error/QueryFailedError.d.ts
***/node_modules/typeorm/browser/error/NoNeedToReleaseEntityManagerError.d.ts
***/node_modules/typeorm/browser/error/UsingJoinColumnOnlyOnOneSideAllowedError.d.ts
***/node_modules/typeorm/browser/error/UsingJoinTableOnlyOnOneSideAllowedError.d.ts
***/node_modules/typeorm/browser/error/SubjectRemovedAndUpdatedError.d.ts
***/node_modules/typeorm/browser/error/PersistedEntityNotFoundError.d.ts
***/node_modules/typeorm/browser/error/UsingJoinColumnIsNotAllowedError.d.ts
***/node_modules/typeorm/browser/error/ColumnTypeUndefinedError.d.ts
***/node_modules/typeorm/browser/error/QueryRunnerAlreadyReleasedError.d.ts
***/node_modules/typeorm/browser/error/OffsetWithoutLimitNotSupportedError.d.ts
***/node_modules/typeorm/browser/error/CannotExecuteNotConnectedError.d.ts
***/node_modules/typeorm/browser/error/NoConnectionOptionError.d.ts
***/node_modules/typeorm/browser/error/index.d.ts
***/node_modules/typeorm/browser/decorator/options/ColumnWithLengthOptions.d.ts
***/node_modules/typeorm/browser/decorator/options/ColumnNumericOptions.d.ts
***/node_modules/typeorm/browser/decorator/options/ColumnEnumOptions.d.ts
***/node_modules/typeorm/browser/decorator/options/ColumnEmbeddedOptions.d.ts
***/node_modules/typeorm/browser/decorator/options/ColumnHstoreOptions.d.ts
***/node_modules/typeorm/browser/decorator/options/ColumnWithWidthOptions.d.ts
***/node_modules/typeorm/browser/decorator/columns/Column.d.ts
***/node_modules/typeorm/browser/decorator/columns/CreateDateColumn.d.ts
***/node_modules/typeorm/browser/decorator/columns/DeleteDateColumn.d.ts
***/node_modules/typeorm/browser/decorator/options/PrimaryGeneratedColumnNumericOptions.d.ts
***/node_modules/typeorm/browser/decorator/options/PrimaryGeneratedColumnUUIDOptions.d.ts
***/node_modules/typeorm/browser/decorator/columns/PrimaryGeneratedColumn.d.ts
***/node_modules/typeorm/browser/decorator/columns/PrimaryColumn.d.ts
***/node_modules/typeorm/browser/decorator/columns/UpdateDateColumn.d.ts
***/node_modules/typeorm/browser/decorator/columns/VersionColumn.d.ts
***/node_modules/typeorm/browser/decorator/options/ViewColumnOptions.d.ts
***/node_modules/typeorm/browser/decorator/columns/ViewColumn.d.ts
***/node_modules/typeorm/browser/decorator/columns/ObjectIdColumn.d.ts
***/node_modules/typeorm/browser/decorator/listeners/AfterInsert.d.ts
***/node_modules/typeorm/browser/decorator/listeners/AfterLoad.d.ts
***/node_modules/typeorm/browser/decorator/listeners/AfterRemove.d.ts
***/node_modules/typeorm/browser/decorator/listeners/AfterUpdate.d.ts
***/node_modules/typeorm/browser/decorator/listeners/BeforeInsert.d.ts
***/node_modules/typeorm/browser/decorator/listeners/BeforeRemove.d.ts
***/node_modules/typeorm/browser/decorator/listeners/BeforeUpdate.d.ts
***/node_modules/typeorm/browser/decorator/listeners/EventSubscriber.d.ts
***/node_modules/typeorm/browser/decorator/options/IndexOptions.d.ts
***/node_modules/typeorm/browser/decorator/options/EntityOptions.d.ts
***/node_modules/typeorm/browser/decorator/relations/JoinColumn.d.ts
***/node_modules/typeorm/browser/decorator/relations/JoinTable.d.ts
***/node_modules/typeorm/browser/decorator/relations/ManyToMany.d.ts
***/node_modules/typeorm/browser/decorator/relations/ManyToOne.d.ts
***/node_modules/typeorm/browser/decorator/relations/OneToMany.d.ts
***/node_modules/typeorm/browser/decorator/relations/OneToOne.d.ts
***/node_modules/typeorm/browser/decorator/relations/RelationCount.d.ts
***/node_modules/typeorm/browser/decorator/relations/RelationId.d.ts
***/node_modules/typeorm/browser/decorator/entity/Entity.d.ts
***/node_modules/typeorm/browser/decorator/entity/ChildEntity.d.ts
***/node_modules/typeorm/browser/decorator/entity/TableInheritance.d.ts
***/node_modules/typeorm/browser/decorator/options/ViewEntityOptions.d.ts
***/node_modules/typeorm/browser/decorator/entity-view/ViewEntity.d.ts
***/node_modules/typeorm/browser/decorator/options/TransactionOptions.d.ts
***/node_modules/typeorm/browser/decorator/transaction/Transaction.d.ts
***/node_modules/typeorm/browser/decorator/transaction/TransactionManager.d.ts
***/node_modules/typeorm/browser/decorator/transaction/TransactionRepository.d.ts
***/node_modules/typeorm/browser/decorator/tree/TreeLevelColumn.d.ts
***/node_modules/typeorm/browser/decorator/tree/TreeParent.d.ts
***/node_modules/typeorm/browser/decorator/tree/TreeChildren.d.ts
***/node_modules/typeorm/browser/decorator/tree/Tree.d.ts
***/node_modules/typeorm/browser/decorator/Index.d.ts
***/node_modules/typeorm/browser/decorator/Unique.d.ts
***/node_modules/typeorm/browser/decorator/Check.d.ts
***/node_modules/typeorm/browser/decorator/Exclusion.d.ts
***/node_modules/typeorm/browser/decorator/Generated.d.ts
***/node_modules/typeorm/browser/decorator/EntityRepository.d.ts
***/node_modules/typeorm/browser/find-options/operator/Any.d.ts
***/node_modules/typeorm/browser/find-options/operator/Between.d.ts
***/node_modules/typeorm/browser/find-options/operator/Equal.d.ts
***/node_modules/typeorm/browser/find-options/operator/In.d.ts
***/node_modules/typeorm/browser/find-options/operator/IsNull.d.ts
***/node_modules/typeorm/browser/find-options/operator/LessThan.d.ts
***/node_modules/typeorm/browser/find-options/operator/LessThanOrEqual.d.ts
***/node_modules/typeorm/browser/find-options/operator/ILike.d.ts
***/node_modules/typeorm/browser/find-options/operator/Like.d.ts
***/node_modules/typeorm/browser/find-options/operator/MoreThan.d.ts
***/node_modules/typeorm/browser/find-options/operator/MoreThanOrEqual.d.ts
***/node_modules/typeorm/browser/find-options/operator/Not.d.ts
***/node_modules/typeorm/browser/find-options/operator/Raw.d.ts
***/node_modules/typeorm/browser/find-options/FindOptionsUtils.d.ts
***/node_modules/typeorm/browser/logger/AdvancedConsoleLogger.d.ts
***/node_modules/typeorm/browser/logger/SimpleConsoleLogger.d.ts
***/node_modules/typeorm/browser/logger/FileLogger.d.ts
***/node_modules/typeorm/browser/repository/AbstractRepository.d.ts
***/node_modules/typeorm/browser/repository/BaseEntity.d.ts
***/node_modules/typeorm/browser/driver/sqlserver/MssqlParameter.d.ts
***/node_modules/typeorm/browser/connection/ConnectionOptionsReader.d.ts
***/node_modules/typeorm/browser/migration/MigrationExecutor.d.ts
***/node_modules/typeorm/browser/naming-strategy/DefaultNamingStrategy.d.ts
***/node_modules/typeorm/browser/index.d.ts
***/src/data/entities.ts
***/src/data/persistor.ts
***/node_modules/@react-navigation/routers/lib/typescript/src/types.d.ts
***/node_modules/@react-navigation/routers/lib/typescript/src/CommonActions.d.ts
***/node_modules/@react-navigation/routers/lib/typescript/src/BaseRouter.d.ts
***/node_modules/@react-navigation/routers/lib/typescript/src/TabRouter.d.ts
***/node_modules/@react-navigation/routers/lib/typescript/src/DrawerRouter.d.ts
***/node_modules/@react-navigation/routers/lib/typescript/src/StackRouter.d.ts
***/node_modules/@react-navigation/routers/lib/typescript/src/index.d.ts
***/node_modules/@react-navigation/core/lib/typescript/src/types.d.ts
***/node_modules/@react-navigation/core/lib/typescript/src/BaseNavigationContainer.d.ts
***/node_modules/@react-navigation/core/lib/typescript/src/createNavigationContainerRef.d.ts
***/node_modules/@react-navigation/core/lib/typescript/src/createNavigatorFactory.d.ts
***/node_modules/@react-navigation/core/lib/typescript/src/CurrentRenderContext.d.ts
***/node_modules/@react-navigation/core/lib/typescript/src/findFocusedRoute.d.ts
***/node_modules/@react-navigation/core/lib/typescript/src/getActionFromState.d.ts
***/node_modules/@react-navigation/core/lib/typescript/src/getFocusedRouteNameFromRoute.d.ts
***/node_modules/@react-navigation/core/lib/typescript/src/getPathFromState.d.ts
***/node_modules/@react-navigation/core/lib/typescript/src/getStateFromPath.d.ts
***/node_modules/@react-navigation/core/lib/typescript/src/NavigationContainerRefContext.d.ts
***/node_modules/@react-navigation/core/lib/typescript/src/NavigationContext.d.ts
***/node_modules/@react-navigation/core/lib/typescript/src/NavigationHelpersContext.d.ts
***/node_modules/@react-navigation/core/lib/typescript/src/NavigationRouteContext.d.ts
***/node_modules/@react-navigation/core/lib/typescript/src/useFocusEffect.d.ts
***/node_modules/@react-navigation/core/lib/typescript/src/useIsFocused.d.ts
***/node_modules/@react-navigation/core/lib/typescript/src/useNavigation.d.ts
***/node_modules/@react-navigation/core/lib/typescript/src/useNavigationBuilder.d.ts
***/node_modules/@react-navigation/core/lib/typescript/src/useNavigationContainerRef.d.ts
***/node_modules/@react-navigation/core/lib/typescript/src/useNavigationState.d.ts
***/node_modules/@react-navigation/core/lib/typescript/src/useRoute.d.ts
***/node_modules/@react-navigation/core/lib/typescript/src/validatePathConfig.d.ts
***/node_modules/@react-navigation/core/lib/typescript/src/index.d.ts
***/node_modules/@react-navigation/native/lib/typescript/src/useLinkTo.d.ts
***/node_modules/@react-navigation/native/lib/typescript/src/Link.d.ts
***/node_modules/@react-navigation/native/lib/typescript/src/types.d.ts
***/node_modules/@react-navigation/native/lib/typescript/src/LinkingContext.d.ts
***/node_modules/@react-navigation/native/lib/typescript/src/NavigationContainer.d.ts
***/node_modules/@react-navigation/native/lib/typescript/src/ServerContext.d.ts
***/node_modules/@react-navigation/native/lib/typescript/src/ServerContainer.d.ts
***/node_modules/@react-navigation/native/lib/typescript/src/theming/DarkTheme.d.ts
***/node_modules/@react-navigation/native/lib/typescript/src/theming/DefaultTheme.d.ts
***/node_modules/@react-navigation/native/lib/typescript/src/theming/ThemeProvider.d.ts
***/node_modules/@react-navigation/native/lib/typescript/src/theming/useTheme.d.ts
***/node_modules/@react-navigation/native/lib/typescript/src/useLinkBuilder.d.ts
***/node_modules/@react-navigation/native/lib/typescript/src/useLinkProps.d.ts
***/node_modules/@react-navigation/native/lib/typescript/src/useScrollToTop.d.ts
***/node_modules/@react-navigation/native/lib/typescript/src/index.d.ts
***/node_modules/react-native-screens/lib/typescript/types.d.ts
***/node_modules/react-native-screens/lib/typescript/useTransitionProgress.d.ts
***/node_modules/react-native-screens/lib/typescript/utils.d.ts
***/node_modules/react-native-screens/lib/typescript/index.d.ts
***/node_modules/@react-navigation/native-stack/lib/typescript/src/types.d.ts
***/node_modules/@react-navigation/native-stack/lib/typescript/src/navigators/createNativeStackNavigator.d.ts
***/node_modules/@react-navigation/native-stack/lib/typescript/src/views/NativeStackView.d.ts
***/node_modules/@react-navigation/native-stack/lib/typescript/src/index.d.ts
***/node_modules/expo-splash-screen/build/SplashScreen.d.ts
***/node_modules/expo-splash-screen/build/index.d.ts
***/node_modules/expo-asset/build/Asset.fx.d.ts
***/node_modules/expo-asset/build/AssetSources.d.ts
***/node_modules/expo-asset/build/Asset.d.ts
***/node_modules/expo-asset/build/AssetHooks.d.ts
***/node_modules/expo-asset/build/index.d.ts
***/node_modules/expo-font/build/Font.types.d.ts
***/node_modules/expo-font/build/Font.d.ts
***/node_modules/expo-font/build/FontHooks.d.ts
***/node_modules/expo-font/build/index.d.ts
***/node_modules/@expo/vector-icons/build/createIconSet.d.ts
***/node_modules/@expo/vector-icons/build/AntDesign.d.ts
***/node_modules/@expo/vector-icons/build/Entypo.d.ts
***/node_modules/@expo/vector-icons/build/EvilIcons.d.ts
***/node_modules/@expo/vector-icons/build/Feather.d.ts
***/node_modules/@expo/vector-icons/build/Fontisto.d.ts
***/node_modules/@expo/vector-icons/build/FontAwesome.d.ts
***/node_modules/@expo/vector-icons/build/FontAwesome5.d.ts
***/node_modules/@expo/vector-icons/build/Foundation.d.ts
***/node_modules/@expo/vector-icons/build/Ionicons.d.ts
***/node_modules/@expo/vector-icons/build/MaterialCommunityIcons.d.ts
***/node_modules/@expo/vector-icons/build/MaterialIcons.d.ts
***/node_modules/@expo/vector-icons/build/Octicons.d.ts
***/node_modules/@expo/vector-icons/build/SimpleLineIcons.d.ts
***/node_modules/@expo/vector-icons/build/Zocial.d.ts
***/node_modules/@expo/vector-icons/build/createMultiStyleIconSet.d.ts
***/node_modules/@expo/vector-icons/build/createIconSetFromFontello.d.ts
***/node_modules/@expo/vector-icons/build/createIconSetFromIcoMoon.d.ts
***/node_modules/@expo/vector-icons/build/Icons.d.ts
***/node_modules/expo-system-ui/build/SystemUI.d.ts
***/node_modules/react-native-reanimated/lib/reanimated2/globals.d.ts
***/node_modules/react-native-reanimated/lib/types/lib/reanimated2/hook/commonTypes.d.ts
***/node_modules/react-native-reanimated/lib/types/lib/reanimated2/commonTypes.d.ts
***/node_modules/react-native-reanimated/lib/types/lib/reanimated2/animation/commonTypes.d.ts
***/node_modules/react-native-reanimated/lib/types/lib/reanimated2/animation/util.d.ts
***/node_modules/react-native-reanimated/lib/types/lib/reanimated2/Easing.d.ts
***/node_modules/react-native-reanimated/lib/types/lib/reanimated2/animation/timing.d.ts
***/node_modules/react-native-reanimated/lib/types/lib/reanimated2/animation/spring.d.ts
***/node_modules/react-native-reanimated/lib/types/lib/reanimated2/animation/decay.d.ts
***/node_modules/react-native-reanimated/lib/types/lib/reanimated2/animation/delay.d.ts
***/node_modules/react-native-reanimated/lib/types/lib/reanimated2/animation/repeat.d.ts
***/node_modules/react-native-reanimated/lib/types/lib/reanimated2/animation/sequence.d.ts
***/node_modules/react-native-reanimated/lib/types/lib/reanimated2/animation/styleAnimation.d.ts
***/node_modules/react-native-reanimated/lib/types/lib/reanimated2/animation/index.d.ts
***/node_modules/react-native-reanimated/react-native-reanimated.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/constants.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/types.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetHandle/types.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetHandle/BottomSheetHandle.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetHandle/index.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetBackdrop/types.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetBackdrop/BottomSheetBackdrop.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetBackdrop/index.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetBackground/types.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetBackground/BottomSheetBackground.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetBackground/index.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetFooter/types.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetFooter/BottomSheetFooter.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetFooter/index.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheet/types.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheet/BottomSheet.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheet/index.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetModal/types.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetModal/BottomSheetModal.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetModal/index.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetModalProvider/types.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetModalProvider/BottomSheetModalProvider.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetModalProvider/index.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/hooks/useBottomSheet.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/contexts/modal/external.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/hooks/useBottomSheetModal.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/hooks/useBottomSheetSpringConfigs.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/hooks/useBottomSheetTimingConfigs.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/contexts/internal.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/hooks/useBottomSheetInternal.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/contexts/external.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/contexts/gesture.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/contexts/modal/internal.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/contexts/index.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/hooks/useBottomSheetModalInternal.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/hooks/useBottomSheetDynamicSnapPoints.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/hooks/useScrollEventsHandlersDefault.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/hooks/useGestureEventsHandlersDefault.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/hooks/useBottomSheetGestureHandlers.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/hooks/useScrollHandler.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/hooks/useScrollableSetter.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetScrollable/createBottomSheetScrollableComponent.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetScrollable/types.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetScrollable/BottomSheetSectionList.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetScrollable/BottomSheetFlatList.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetScrollable/BottomSheetScrollView.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetScrollable/BottomSheetVirtualizedList.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetScrollable/index.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetDraggableView/types.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetDraggableView/BottomSheetDraggableView.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetDraggableView/index.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetView/types.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetView/BottomSheetView.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetView/index.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetTextInput/types.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetTextInput/BottomSheetTextInput.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetTextInput/index.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetFooterContainer/types.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/components/bottomSheetFooterContainer/BottomSheetFooterContainer.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/utilities/logger.d.ts
***/node_modules/@gorhom/bottom-sheet/lib/typescript/index.d.ts
***/node_modules/@th3rdwave/react-navigation-bottom-sheet/lib/typescript/types.d.ts
***/node_modules/@th3rdwave/react-navigation-bottom-sheet/lib/typescript/createBottomSheetNavigator.d.ts
***/node_modules/@th3rdwave/react-navigation-bottom-sheet/lib/typescript/index.d.ts
***/node_modules/react-native-safe-area-context/lib/typescript/SafeArea.types.d.ts
***/node_modules/react-native-safe-area-context/lib/typescript/SafeAreaContext.d.ts
***/node_modules/react-native-safe-area-context/lib/typescript/specs/NativeSafeAreaView.d.ts
***/node_modules/react-native-safe-area-context/lib/typescript/SafeAreaView.d.ts
***/node_modules/react-native-safe-area-context/lib/typescript/InitialWindow.d.ts
***/node_modules/react-native-safe-area-context/lib/typescript/index.d.ts
***/node_modules/expo-status-bar/build/StatusBar.types.d.ts
***/node_modules/expo-status-bar/build/setStatusBarBackgroundColor.d.ts
***/node_modules/expo-status-bar/build/setStatusBarNetworkActivityIndicatorVisible.d.ts
***/node_modules/expo-status-bar/build/setStatusBarHidden.d.ts
***/node_modules/expo-status-bar/build/setStatusBarStyle.d.ts
***/node_modules/expo-status-bar/build/setStatusBarTranslucent.d.ts
***/node_modules/expo-status-bar/build/ExpoStatusBar.d.ts
***/node_modules/expo-status-bar/build/StatusBar.d.ts
***/node_modules/expo-haptics/build/Haptics.types.d.ts
***/node_modules/expo-haptics/build/Haptics.d.ts
***/node_modules/expo-keep-awake/build/index.d.ts
***/src/components/Text.tsx
***/src/components/SegmentedOptions.tsx
***/src/components/Clock.tsx
***/node_modules/@react-native-community/hooks/lib/useDimensions.d.ts
***/node_modules/@react-native-community/hooks/lib/useAppState.d.ts
***/node_modules/@react-native-community/hooks/lib/useBackHandler.d.ts
***/node_modules/@react-native-community/hooks/lib/useCameraRoll.d.ts
***/node_modules/@react-native-community/hooks/lib/useClipboard.d.ts
***/node_modules/@react-native-community/hooks/lib/useAccessibilityInfo.d.ts
***/node_modules/@react-native-community/hooks/lib/useKeyboard.d.ts
***/node_modules/@react-native-community/hooks/lib/useInteractionManager.d.ts
***/node_modules/@react-native-community/hooks/lib/useDeviceOrientation.d.ts
***/node_modules/@react-native-community/hooks/lib/useLayout.d.ts
***/node_modules/@react-native-community/hooks/lib/useImageDimensions.d.ts
***/node_modules/@react-native-community/hooks/lib/index.d.ts
***/node_modules/@react-navigation/elements/lib/typescript/src/Background.d.ts
***/node_modules/@react-navigation/elements/lib/typescript/src/types.d.ts
***/node_modules/@react-navigation/elements/lib/typescript/src/Header/getDefaultHeaderHeight.d.ts
***/node_modules/@react-navigation/elements/lib/typescript/src/Header/getHeaderTitle.d.ts
***/node_modules/@react-navigation/elements/lib/typescript/src/Header/Header.d.ts
***/node_modules/@react-navigation/elements/lib/typescript/src/Header/HeaderBackButton.d.ts
***/node_modules/@react-navigation/elements/lib/typescript/src/Header/HeaderBackContext.d.ts
***/node_modules/@react-navigation/elements/lib/typescript/src/Header/HeaderBackground.d.ts
***/node_modules/@react-navigation/elements/lib/typescript/src/Header/HeaderHeightContext.d.ts
***/node_modules/@react-navigation/elements/lib/typescript/src/Header/HeaderShownContext.d.ts
***/node_modules/@react-navigation/elements/lib/typescript/src/Header/HeaderTitle.d.ts
***/node_modules/@react-navigation/elements/lib/typescript/src/Header/useHeaderHeight.d.ts
***/node_modules/@react-navigation/elements/lib/typescript/src/MissingIcon.d.ts
***/node_modules/@react-navigation/elements/lib/typescript/src/PlatformPressable.d.ts
***/node_modules/@react-navigation/elements/lib/typescript/src/ResourceSavingView.d.ts
***/node_modules/@react-navigation/elements/lib/typescript/src/SafeAreaProviderCompat.d.ts
***/node_modules/@react-navigation/elements/lib/typescript/src/Screen.d.ts
***/node_modules/@react-navigation/elements/lib/typescript/src/index.d.ts
***/src/hooks/useColors.ts
***/src/components/Icon.tsx
***/src/components/Button.tsx
***/src/components/Screen.tsx
***/src/navigation.ts
***/src/converters.ts
***/src/comparators.ts
***/src/hooks/useDeviceParam.ts
***/src/hooks/useRideMode.ts
***/node_modules/@types/zen-observable/index.d.ts
***/node_modules/zen-observable-ts/index.d.ts
***/src/data/logger.ts
***/src/device/readParameters.ts
***/src/device/watchMultipleParameters.ts
***/src/data/realtime.ts
***/src/screens/Dashboard/data.ts
***/node_modules/expo-modules-core/build/EventEmitter.d.ts
***/node_modules/expo-modules-core/build/NativeModulesProxy.types.d.ts
***/node_modules/expo-modules-core/build/NativeModulesProxy.d.ts
***/node_modules/expo-modules-core/build/NativeViewManagerAdapter.d.ts
***/node_modules/expo-modules-core/build/Platform.d.ts
***/node_modules/expo-modules-core/build/SyntheticPlatformEmitter.d.ts
***/node_modules/expo-modules-core/build/errors/CodedError.d.ts
***/node_modules/expo-modules-core/build/errors/UnavailabilityError.d.ts
***/node_modules/expo-modules-core/build/sweet/setUpErrorManager.fx.d.ts
***/node_modules/expo-modules-core/build/deprecate.d.ts
***/node_modules/expo-modules-core/build/requireNativeModule.d.ts
***/node_modules/expo-modules-core/build/PermissionsInterface.d.ts
***/node_modules/expo-modules-core/build/PermissionsHook.d.ts
***/node_modules/expo-modules-core/build/index.d.ts
***/node_modules/expo-notifications/build/Tokens.types.d.ts
***/node_modules/expo-notifications/build/getDevicePushTokenAsync.d.ts
***/node_modules/expo-notifications/build/unregisterForNotificationsAsync.d.ts
***/node_modules/expo-notifications/build/getExpoPushTokenAsync.d.ts
***/node_modules/expo-notifications/build/NotificationScheduler.types.d.ts
***/node_modules/expo-notifications/build/Notifications.types.d.ts
***/node_modules/expo-notifications/build/getPresentedNotificationsAsync.d.ts
***/node_modules/expo-notifications/build/presentNotificationAsync.d.ts
***/node_modules/expo-notifications/build/dismissNotificationAsync.d.ts
***/node_modules/expo-notifications/build/dismissAllNotificationsAsync.d.ts
***/node_modules/expo-notifications/build/NotificationChannelManager.types.d.ts
***/node_modules/expo-notifications/build/getNotificationChannelsAsync.d.ts
***/node_modules/expo-notifications/build/getNotificationChannelAsync.d.ts
***/node_modules/expo-notifications/build/setNotificationChannelAsync.d.ts
***/node_modules/expo-notifications/build/deleteNotificationChannelAsync.d.ts
***/node_modules/expo-notifications/build/NotificationChannelGroupManager.types.d.ts
***/node_modules/expo-notifications/build/getNotificationChannelGroupsAsync.d.ts
***/node_modules/expo-notifications/build/getNotificationChannelGroupAsync.d.ts
***/node_modules/expo-notifications/build/setNotificationChannelGroupAsync.d.ts
***/node_modules/expo-notifications/build/deleteNotificationChannelGroupAsync.d.ts
***/node_modules/expo-notifications/build/getBadgeCountAsync.d.ts
***/node_modules/badgin/build/favicon.d.ts
***/node_modules/badgin/build/title.d.ts
***/node_modules/badgin/build/index.d.ts
***/node_modules/expo-notifications/build/BadgeModule.types.d.ts
***/node_modules/expo-notifications/build/setBadgeCountAsync.d.ts
***/node_modules/expo-notifications/build/getAllScheduledNotificationsAsync.d.ts
***/node_modules/expo-notifications/build/scheduleNotificationAsync.d.ts
***/node_modules/expo-notifications/build/cancelScheduledNotificationAsync.d.ts
***/node_modules/expo-notifications/build/cancelAllScheduledNotificationsAsync.d.ts
***/node_modules/expo-notifications/build/getNotificationCategoriesAsync.d.ts
***/node_modules/expo-notifications/build/setNotificationCategoryAsync.d.ts
***/node_modules/expo-notifications/build/deleteNotificationCategoryAsync.d.ts
***/node_modules/expo-notifications/build/getNextTriggerDateAsync.d.ts
***/node_modules/expo-notifications/build/useLastNotificationResponse.d.ts
***/node_modules/expo-notifications/build/DevicePushTokenAutoRegistration.fx.d.ts
***/node_modules/expo-notifications/build/registerTaskAsync.d.ts
***/node_modules/expo-notifications/build/unregisterTaskAsync.d.ts
***/node_modules/expo-notifications/build/TokenEmitter.d.ts
***/node_modules/expo-notifications/build/NotificationsEmitter.d.ts
***/node_modules/expo-notifications/build/NotificationsHandler.d.ts
***/node_modules/expo-notifications/build/NotificationPermissions.types.d.ts
***/node_modules/expo-notifications/build/NotificationPermissions.d.ts
***/node_modules/expo-notifications/build/index.d.ts
***/src/strings.ts
***/src/components/Toggle.tsx
***/node_modules/@types/react-native-charts-wrapper/node_modules/@types/react/global.d.ts
***/node_modules/@types/react-native-charts-wrapper/node_modules/@types/react/index.d.ts
***/node_modules/@types/react-native-charts-wrapper/node_modules/@types/react-native/globals.d.ts
***/node_modules/@types/react-native-charts-wrapper/node_modules/@types/react-native/legacy-properties.d.ts
***/node_modules/@types/react-native-charts-wrapper/node_modules/@types/react-native/BatchedBridge.d.ts
***/node_modules/@types/react-native-charts-wrapper/node_modules/@types/react-native/Devtools.d.ts
***/node_modules/@types/react-native-charts-wrapper/node_modules/@types/react-native/LaunchScreen.d.ts
***/node_modules/@types/react-native-charts-wrapper/node_modules/@types/react-native/index.d.ts
***/node_modules/@types/react-native-charts-wrapper/index.d.ts
***/src/hooks/useParameterHistory.ts
***/src/screens/Dashboard/RealtimeChart.tsx
***/node_modules/react-native-svg/src/index.d.ts
***/src/components/Gauge.tsx
***/src/screens/Dashboard/RealtimeGauge.tsx
***/node_modules/fast-printf/dist/src/types.d.ts
***/node_modules/fast-printf/dist/src/createPrintf.d.ts
***/node_modules/fast-printf/dist/src/printf.d.ts
***/src/components/Battery.tsx
***/src/calculators.ts
***/src/hooks/useWriteParam.ts
***/src/hooks/usePowerMode.ts
***/src/screens/Dashboard/RealtimeBattery.tsx
***/src/components/Indicator.tsx
***/src/screens/Dashboard/RealtimeIndicators.tsx
***/src/hooks/useOdometer.ts
***/node_modules/react-native-siri-shortcut/index.d.ts
***/src/shortcuts/index.ts
***/node_modules/@types/bluebird/index.d.ts
***/src/hooks/useRideShortcuts.ts
***/src/hooks/useConnectedDevice.ts
***/src/data/preferences.ts
***/src/screens/Dashboard/index.tsx
***/src/hooks/useIsPortrait.ts
***/src/components/ListRow.tsx
***/src/device/backup.ts
***/node_modules/gen-unit/types/consts.d.ts
***/node_modules/gen-unit/types/types.d.ts
***/node_modules/gen-unit/types/format/types.d.ts
***/node_modules/gen-unit/types/format/format.d.ts
***/node_modules/gen-unit/types/parse/types.d.ts
***/node_modules/gen-unit/types/parse/parse.d.ts
***/node_modules/gen-unit/types/index.d.ts
***/src/formatters.ts
***/node_modules/expo-file-system/build/FileSystem.types.d.ts
***/node_modules/expo-file-system/build/FileSystem.d.ts
***/node_modules/expo-file-system/build/index.d.ts
***/src/data/queries.ts
***/src/hooks/useAsyncValue.ts
***/node_modules/@types/retry/index.d.ts
***/node_modules/p-retry/index.d.ts
***/src/device/handshake.ts
***/src/components/Empty.tsx
***/src/hooks/useBluetooth.ts
***/src/screens/Connect/index.tsx
***/node_modules/@react-navigation/bottom-tabs/lib/typescript/src/types.d.ts
***/node_modules/@react-navigation/bottom-tabs/lib/typescript/src/navigators/createBottomTabNavigator.d.ts
***/node_modules/@react-navigation/bottom-tabs/lib/typescript/src/views/BottomTabBar.d.ts
***/node_modules/@react-navigation/bottom-tabs/lib/typescript/src/views/BottomTabView.d.ts
***/node_modules/@react-navigation/bottom-tabs/lib/typescript/src/utils/BottomTabBarHeightCallbackContext.d.ts
***/node_modules/@react-navigation/bottom-tabs/lib/typescript/src/utils/BottomTabBarHeightContext.d.ts
***/node_modules/@react-navigation/bottom-tabs/lib/typescript/src/utils/useBottomTabBarHeight.d.ts
***/node_modules/@react-navigation/bottom-tabs/lib/typescript/src/index.d.ts
***/node_modules/@react-navigation/bottom-tabs/src/views/Badge.tsx
***/src/hooks/usePreferences.ts
***/src/components/NumberInput.tsx
***/src/hooks/useLiveParams.ts
***/src/screens/Setup/LiveParams.tsx
***/src/screens/Setup/Power.tsx
***/node_modules/@baggie/math/lib/coordinates/_interfaces/coordinatesXY.interface.d.ts
***/node_modules/@baggie/math/lib/coordinates/_interfaces/bounds.interface.d.ts
***/node_modules/@baggie/math/lib/coordinates/_interfaces/coordinatesLatLng.interface.d.ts
***/node_modules/@baggie/math/lib/arithmetic/addNumbers.d.ts
***/node_modules/@baggie/math/lib/arithmetic/countDecimals.d.ts
***/node_modules/@baggie/math/lib/arithmetic/getClosest.d.ts
***/node_modules/@baggie/math/lib/average/getMean.d.ts
***/node_modules/@baggie/math/lib/average/getMedian.d.ts
***/node_modules/@baggie/math/lib/average/getMode.d.ts
***/node_modules/@baggie/math/lib/coordinates/convertToCoordinates.d.ts
***/node_modules/@baggie/math/lib/coordinates/angle/getAngle.d.ts
***/node_modules/@baggie/math/lib/coordinates/angle/getClosestAngles.d.ts
***/node_modules/@baggie/math/lib/coordinates/angle/isAngleInRange.d.ts
***/node_modules/@baggie/math/lib/coordinates/bounds/getBounds.d.ts
***/node_modules/@baggie/math/lib/coordinates/distance/getAllDistances.d.ts
***/node_modules/@baggie/math/lib/coordinates/distance/getDistance.d.ts
***/node_modules/@baggie/math/lib/coordinates/distance/getDistanceOnEarth.d.ts
***/node_modules/@baggie/math/lib/coordinates/distance/getDistanceOnSphere.d.ts
***/node_modules/@baggie/math/lib/coordinates/distance/getPointBetween.d.ts
***/node_modules/@baggie/math/lib/coordinates/radius/isInsideRadius.d.ts
***/node_modules/@baggie/math/lib/coordinates/radius/keepInsideRadius.d.ts
***/node_modules/@baggie/math/lib/coordinates/slope/getSlope.d.ts
***/node_modules/@baggie/math/lib/geometry/circle/getCircleCircumference.d.ts
***/node_modules/@baggie/math/lib/geometry/circle/getCircleSurface.d.ts
***/node_modules/@baggie/math/lib/geometry/circle/getPointsOnCircle.d.ts
***/node_modules/@baggie/math/lib/geometry/cone/getConeSurface.d.ts
***/node_modules/@baggie/math/lib/geometry/cone/getConeVolume.d.ts
***/node_modules/@baggie/math/lib/geometry/cuboid/getCuboidSurface.d.ts
***/node_modules/@baggie/math/lib/geometry/cuboid/getCuboidVolume.d.ts
***/node_modules/@baggie/math/lib/geometry/cylinder/getCylinderSurface.d.ts
***/node_modules/@baggie/math/lib/geometry/cylinder/getCylinderVolume.d.ts
***/node_modules/@baggie/math/lib/geometry/rectangle/getRectanglePerimeter.d.ts
***/node_modules/@baggie/math/lib/geometry/rectangle/getRectangleSurface.d.ts
***/node_modules/@baggie/math/lib/geometry/sphere/getSphereSurface.d.ts
***/node_modules/@baggie/math/lib/geometry/sphere/getSphereVolume.d.ts
***/node_modules/@baggie/math/lib/geometry/triangle/getTrianglePerimeter.d.ts
***/node_modules/@baggie/math/lib/geometry/triangle/getTriangleSurface.d.ts
***/node_modules/@baggie/math/lib/percentage/getPercentage.d.ts
***/node_modules/@baggie/math/lib/percentage/getPercentageBetween.d.ts
***/node_modules/@baggie/math/lib/percentage/getPercentageIncrease.d.ts
***/node_modules/@baggie/math/lib/percentage/getPositionBetween.d.ts
***/node_modules/@baggie/math/lib/radians/degreesToRadians.d.ts
***/node_modules/@baggie/math/lib/radians/radiansToDegrees.d.ts
***/node_modules/@baggie/math/lib/range/clamp.d.ts
***/node_modules/@baggie/math/lib/range/convertRangePosition.d.ts
***/node_modules/@baggie/math/lib/range/getRange.d.ts
***/node_modules/@baggie/math/lib/range/isInRange.d.ts
***/node_modules/@baggie/math/lib/range/keepOutsideRange.d.ts
***/node_modules/@baggie/math/lib/rounding/ceilDecimals.d.ts
***/node_modules/@baggie/math/lib/rounding/ceilToMultipleOf.d.ts
***/node_modules/@baggie/math/lib/rounding/floorDecimals.d.ts
***/node_modules/@baggie/math/lib/rounding/floorToMultipleOf.d.ts
***/node_modules/@baggie/math/lib/rounding/roundDecimals.d.ts
***/node_modules/@baggie/math/lib/rounding/roundToMultipleOf.d.ts
***/node_modules/@baggie/math/lib/rounding/truncDecimals.d.ts
***/node_modules/@baggie/math/lib/rounding/isNumberRound.d.ts
***/node_modules/@baggie/math/lib/rounding/truncNumber.d.ts
***/node_modules/@baggie/math/lib/temperature/celsiusToDelisle.d.ts
***/node_modules/@baggie/math/lib/temperature/celsiusToFahrenheit.d.ts
***/node_modules/@baggie/math/lib/temperature/celsiusToKelvin.d.ts
***/node_modules/@baggie/math/lib/temperature/celsiusToNewton.d.ts
***/node_modules/@baggie/math/lib/temperature/celsiusToRankine.d.ts
***/node_modules/@baggie/math/lib/temperature/celsiusToReaumur.d.ts
***/node_modules/@baggie/math/lib/temperature/celsiusToRoemer.d.ts
***/node_modules/@baggie/math/lib/temperature/delisleToCelsius.d.ts
***/node_modules/@baggie/math/lib/temperature/fahrenheitToCelsius.d.ts
***/node_modules/@baggie/math/lib/temperature/kelvinToCelsius.d.ts
***/node_modules/@baggie/math/lib/temperature/newtonToCelsius.d.ts
***/node_modules/@baggie/math/lib/temperature/rankineToCelsius.d.ts
***/node_modules/@baggie/math/lib/temperature/reaumurToCelsius.d.ts
***/node_modules/@baggie/math/lib/temperature/roemerToCelsius.d.ts
***/node_modules/@baggie/math/lib/time/getDuration.d.ts
***/node_modules/@baggie/math/lib/time/getTimeDifference.d.ts
***/node_modules/@baggie/math/lib/index.d.ts
***/src/screens/Setup/Throttle.tsx
***/src/hooks/useMotorTemperature.ts
***/src/screens/Setup/Motor.tsx
***/src/hooks/useDisplay.ts
***/src/screens/Setup/Display.tsx
***/src/hooks/useDebugParam.ts
***/src/components/InputButton.tsx
***/src/screens/Setup/Debug.tsx
***/src/components/LineChart.tsx
***/src/hooks/useRealtimeHistory.ts
***/src/components/FilterRow.tsx
***/node_modules/collect.js/index.d.ts
***/node_modules/expo-sharing/build/Sharing.d.ts
***/src/hooks/useHistoryExport.ts
***/src/screens/Setup/Dyno.tsx
***/src/screens/Setup/WriteButton.tsx
***/src/hooks/useControlerModel.ts
***/src/screens/Setup/ClearFaultsButton.tsx
***/src/screens/Setup/Controller.tsx
***/src/screens/Setup/index.tsx
***/src/components/ThrottleIcon.tsx
***/src/screens/Setup/Wizard.tsx
***/node_modules/@rkrupinski/use-state-machine/dist/types.d.ts
***/node_modules/@rkrupinski/use-state-machine/dist/machine.d.ts
***/node_modules/@rkrupinski/use-state-machine/dist/index.d.ts
***/src/screens/Setup/useThrottleWizardMachine.ts
***/src/screens/Setup/ThrottleWizard.tsx
***/src/screens/Setup/useMotorWizardMachine.ts
***/src/screens/Setup/MotorWizard.tsx
***/src/screens/Terms.tsx
***/node_modules/react-native-swipeable-item/lib/typescript/index.d.ts
***/src/screens/History/List.tsx
***/src/screens/History/Details.tsx
***/src/screens/History/index.tsx
***/src/screens/Setup/Faults.tsx
***/node_modules/expo-updates/build/Updates.types.d.ts
***/node_modules/expo-updates/build/Updates.d.ts
***/node_modules/expo-updates/build/index.d.ts
***/src/screens/Home/index.tsx
***/src/About.tsx
***/src/components/TextInput.tsx
***/src/screens/Manage/index.tsx
***/src/screens/Setup/DrivetrainAdvanced.tsx
***/src/screens/Setup/useInputWizardMachine.ts
***/src/components/Layout.tsx
***/src/components/Graphic.tsx
***/src/screens/Setup/InputWizard.tsx
***/src/components/ProgressBar.tsx
***/src/screens/Setup/BackupWizard.tsx
***/src/screens/Manage/Backups.tsx
***/src/App.tsx
***/App.tsx
***/node_modules/@expo/config-plugins/build/android/Manifest.d.ts
***/node_modules/@expo/config-plugins/build/android/AllowBackup.d.ts
***/node_modules/@expo/json-file/build/JsonFile.d.ts
***/node_modules/@expo/config-plugins/build/utils/XML.d.ts
***/node_modules/@expo/config-plugins/build/android/Resources.d.ts
***/node_modules/@expo/config-plugins/build/android/Paths.d.ts
***/node_modules/@expo/config-plugins/build/ios/IosConfig.types.d.ts
***/node_modules/@expo/config-plugins/build/ios/Paths.d.ts
***/node_modules/@expo/config-plugins/build/Plugin.types.d.ts
***/node_modules/@expo/config-plugins/build/utils/BuildProperties.types.d.ts
***/node_modules/@expo/config-plugins/build/android/Properties.d.ts
***/node_modules/@expo/config-plugins/build/android/BuildProperties.d.ts
***/node_modules/@expo/config-plugins/build/android/Colors.d.ts
***/node_modules/@expo/config-plugins/build/android/EasBuild.d.ts
***/node_modules/@expo/config-plugins/build/android/GoogleMapsApiKey.d.ts
***/node_modules/@expo/config-plugins/build/android/GoogleServices.d.ts
***/node_modules/@expo/config-plugins/build/android/IntentFilters.d.ts
***/node_modules/@expo/config-plugins/build/android/Name.d.ts
***/node_modules/@expo/config-plugins/build/android/Orientation.d.ts
***/node_modules/@expo/config-plugins/build/android/Package.d.ts
***/node_modules/@expo/config-plugins/build/android/Permissions.d.ts
***/node_modules/@expo/config-plugins/build/android/PrimaryColor.d.ts
***/node_modules/@expo/config-plugins/build/android/Scheme.d.ts
***/node_modules/@expo/config-plugins/build/android/StatusBar.d.ts
***/node_modules/@expo/config-plugins/build/android/Strings.d.ts
***/node_modules/@expo/config-plugins/build/android/Styles.d.ts
***/node_modules/@expo/config-plugins/build/utils/Updates.d.ts
***/node_modules/@expo/config-plugins/build/android/Updates.d.ts
***/node_modules/@expo/config-plugins/build/android/Version.d.ts
***/node_modules/@expo/config-plugins/build/android/WindowSoftInputMode.d.ts
***/node_modules/@expo/config-plugins/build/android/index.d.ts
***/node_modules/@expo/config-plugins/build/ios/Bitcode.d.ts
***/node_modules/@expo/config-plugins/build/ios/BuildProperties.d.ts
***/node_modules/@expo/config-plugins/build/ios/BuildScheme.d.ts
***/node_modules/@expo/config-plugins/build/ios/BundleIdentifier.d.ts
***/node_modules/@expo/config-plugins/build/ios/DeviceFamily.d.ts
***/node_modules/@expo/config-plugins/build/ios/Entitlements.d.ts
***/node_modules/@expo/config-plugins/build/ios/Google.d.ts
***/node_modules/@expo/config-plugins/build/ios/Locales.d.ts
***/node_modules/@expo/config-plugins/build/utils/generateCode.d.ts
***/node_modules/@expo/config-plugins/build/ios/Maps.d.ts
***/node_modules/@expo/config-plugins/build/ios/Name.d.ts
***/node_modules/@expo/config-plugins/build/ios/Orientation.d.ts
***/node_modules/@expo/config-plugins/build/ios/Permissions.d.ts
***/node_modules/@expo/config-plugins/build/ios/ProvisioningProfile.d.ts
***/node_modules/@expo/config-plugins/build/ios/RequiresFullScreen.d.ts
***/node_modules/@expo/config-plugins/build/ios/Scheme.d.ts
***/node_modules/@expo/config-plugins/build/ios/Swift.d.ts
***/node_modules/@expo/config-plugins/build/ios/utils/Xcodeproj.d.ts
***/node_modules/@expo/config-plugins/build/ios/Target.d.ts
***/node_modules/@expo/config-plugins/build/ios/Updates.d.ts
***/node_modules/@expo/config-plugins/build/ios/UsesNonExemptEncryption.d.ts
***/node_modules/@expo/config-plugins/build/ios/Version.d.ts
***/node_modules/@expo/config-plugins/build/ios/XcodeProjectFile.d.ts
***/node_modules/@expo/config-plugins/build/ios/index.d.ts
***/node_modules/@expo/config-plugins/build/plugins/withMod.d.ts
***/node_modules/@expo/config-plugins/build/plugins/createBaseMod.d.ts
***/node_modules/@expo/config-plugins/build/plugins/withAndroidBaseMods.d.ts
***/node_modules/@expo/config-plugins/build/plugins/withIosBaseMods.d.ts
***/node_modules/@expo/config-plugins/build/utils/history.d.ts
***/node_modules/@expo/config-plugins/build/utils/warnings.d.ts
***/node_modules/@expo/config-plugins/build/plugins/withPlugins.d.ts
***/node_modules/@expo/config-plugins/build/plugins/withRunOnce.d.ts
***/node_modules/@expo/config-plugins/build/plugins/withDangerousMod.d.ts
***/node_modules/@expo/config-plugins/build/plugins/ios-plugins.d.ts
***/node_modules/@expo/config-plugins/build/plugins/android-plugins.d.ts
***/node_modules/@expo/config-plugins/build/plugins/withStaticPlugin.d.ts
***/node_modules/@expo/config-plugins/build/plugins/mod-compiler.d.ts
***/node_modules/@expo/config-plugins/build/utils/errors.d.ts
***/node_modules/@expo/config-plugins/build/index.d.ts
***/plugins/withSiriShortcut.ts
***/app.config.ts
***/global.d.ts
***/jest.config.ts
***/node_modules/fast-xml-parser/src/fxp.d.ts
***/node_modules/no-case/dist/index.d.ts
***/node_modules/pascal-case/dist/index.d.ts
***/node_modules/camel-case/dist/index.d.ts
***/src/convert.ts
***/node_modules/@abandonware/bleno/index.d.ts
***/src/simulator.ts
***/src/bluetooth/device.ts
***/src/components/Alert.tsx
***/src/components/LineAreaChart.tsx
***/src/components/ListRowGroup.tsx
***/src/components/Logo.tsx
***/src/data/logger.test.ts
***/src/developer/flipper.ts
***/src/device/index.test.ts
***/src/device/timeout.ts
***/src/hooks/useBlockBack.ts
***/src/protocol/batching.ts
***/src/hooks/useDeviceParams.ts
***/src/hooks/useDisconnectedAlert.ts
***/src/hooks/useIsLayout.ts
***/src/hooks/usePrevious.ts
***/src/hooks/useReconnect.ts
***/src/hooks/useUpdatePrompt.ts
***/src/protocol/bluetooth.test.ts
***/src/protocol/modbus.test.ts
***/src/screens/Dashboard/components/Mode.tsx
***/src/screens/Setup/useSaveButton.tsx
***/node_modules/@babel/types/lib/index.d.ts
***/node_modules/@types/babel__generator/index.d.ts
***/node_modules/@types/babel__core/node_modules/@babel/parser/typings/babel-parser.d.ts
***/node_modules/@types/babel__template/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/keyv/index.d.ts
***/node_modules/@types/http-cache-semantics/index.d.ts
***/node_modules/@types/responselike/index.d.ts
***/node_modules/@types/cacheable-request/index.d.ts
***/node_modules/@types/datadog-metrics/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/hammerjs/index.d.ts
***/node_modules/@types/html-minifier-terser/index.d.ts
***/node_modules/@types/invariant/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/jest/node_modules/jest-diff/build/cleanupSemantic.d.ts
***/node_modules/@types/jest/node_modules/pretty-format/build/types.d.ts
***/node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts
***/node_modules/@types/jest/node_modules/jest-diff/build/types.d.ts
***/node_modules/@types/jest/node_modules/jest-diff/build/diffLines.d.ts
***/node_modules/@types/jest/node_modules/jest-diff/build/printDiffs.d.ts
***/node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts
***/node_modules/@types/jest/index.d.ts
***/node_modules/@types/json-buffer/index.d.ts
***/node_modules/@types/json-schema/index.d.ts
***/node_modules/@types/json5/index.d.ts
***/node_modules/@types/normalize-package-data/index.d.ts
***/node_modules/@types/prettier/index.d.ts
***/node_modules/@types/q/index.d.ts
***/node_modules/@types/react-native-indicators/node_modules/@types/react/index.d.ts
***/node_modules/@types/react-native-indicators/node_modules/@types/react-native/index.d.ts
***/node_modules/@types/react-native-indicators/index.d.ts
***/node_modules/@types/scheduler/index.d.ts
***/node_modules/@types/source-list-map/index.d.ts
***/node_modules/@types/stack-utils/index.d.ts
***/node_modules/@types/tapable/index.d.ts
***/node_modules/source-map/source-map.d.ts
***/node_modules/@types/uglify-js/index.d.ts
***/node_modules/anymatch/index.d.ts
***/node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts
***/node_modules/@types/webpack-sources/lib/Source.d.ts
***/node_modules/@types/webpack-sources/lib/CompatSource.d.ts
***/node_modules/@types/webpack-sources/lib/ConcatSource.d.ts
***/node_modules/@types/webpack-sources/lib/OriginalSource.d.ts
***/node_modules/@types/webpack-sources/lib/PrefixSource.d.ts
***/node_modules/@types/webpack-sources/lib/RawSource.d.ts
***/node_modules/@types/webpack-sources/lib/ReplaceSource.d.ts
***/node_modules/@types/webpack-sources/lib/SizeOnlySource.d.ts
***/node_modules/@types/webpack-sources/lib/SourceMapSource.d.ts
***/node_modules/@types/webpack-sources/lib/index.d.ts
***/node_modules/@types/webpack-sources/lib/CachedSource.d.ts
***/node_modules/@types/webpack-sources/index.d.ts
***/node_modules/@types/webpack/index.d.ts
***/node_modules/@types/yargs-parser/index.d.ts
***/node_modules/@types/yargs/index.d.ts

However, this error now is coming up in the beginning. I don't have any directories with this name on my project.

error TS2688: Cannot find type definition file for 'build'.
  The file is in the program because:
    Entry point for implicit type library 'build'
error TS2688: Cannot find type definition file for 'examples'.
  The file is in the program because:
    Entry point for implicit type library 'examples'
error TS2688: Cannot find type definition file for 'lib'.
  The file is in the program because:
    Entry point for implicit type library 'lib'
error TS2688: Cannot find type definition file for 'node-addon-api'.
  The file is in the program because:
    Entry point for implicit type library 'node-addon-api'
error TS2688: Cannot find type definition file for 'test'.
  The file is in the program because:
    Entry point for implicit type library 'test'

@jakebailey
Copy link
Member

allowJs allows JS files to be loaded, and this debug assertion can only appear in a JS file, so one's getting loaded somehow.

Are there any .js files with any of those names in the error message?

@jakebailey jakebailey added the Needs More Info The issue still hasn't been fully clarified label Oct 27, 2022
@m1st1ck
Copy link

m1st1ck commented Dec 1, 2022

For me the problem was coming from the js files in ./dist/bundles folder that was generated after running eas update, so I just excluded them "exclude": ["./dist"].

@jakebailey
Copy link
Member

If you are able to identify a specific piece of code, that would be great. Even though it's definitely a configuration error to not ignore an output directory like dist, we shouldn't be crashing either.

@m1st1ck
Copy link

m1st1ck commented Dec 6, 2022

I believe the problem is that we have .js files, but after switching to the hermes engine they contain bytecode instead of javascript. If I switch back to the jsc engine it will bundle to javascript and won't get the error.

@jakebailey
Copy link
Member

.js files that don't contain JS? That seems like a bad idea, but I don't think we should crash with them in any case.

@RyanCavanaugh RyanCavanaugh added the Rescheduled This issue was previously scheduled to an earlier milestone label Feb 1, 2023
@typescript-bot typescript-bot added the Fix Available A PR has been opened for this issue label Feb 8, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug A bug in TypeScript Crash For flagging bugs which are compiler or service crashes or unclean exits, rather than bad output Fix Available A PR has been opened for this issue Needs More Info The issue still hasn't been fully clarified Rescheduled This issue was previously scheduled to an earlier milestone
Projects
None yet
Development

Successfully merging a pull request may close this issue.

7 participants