1{"version":3,"file":"effects.js","sourceRoot":"","sources":["../src/effects.ts"],"names":[],"mappings":";;AAeA;AACE,2BAA2B;AAC3B,OAAO,CAAC,GAAG,CAAC,QAAQ,KAAK,YAAY;IACrC,kBAAkB;IAClB,OAAO,MAAM,KAAK,WAAW;IAC7B,iCAAiC;IACjC,qGAAqG;IACrG,MAAM,CAAC,uBAAuB,IAAI,IAAI,EACtC;IACA,OAAO,CAAC,oBAAoB,CAAC,CAAC;IAC9B,OAAO,CAAC,YAAY,CAAC,CAAC;IACtB,OAAO,CAAC,iBAAiB,CAAC,CAAC;CAC5B","sourcesContent":["import type { NavigationContainerRef } from '@react-navigation/core';\nimport type { LinkingOptions } from '@react-navigation/native';\n\ndeclare let global: {\n  __DEV__?: boolean;\n  RN$Bridgeless?: boolean;\n  __METRO_GLOBAL_PREFIX__?: string;\n  __RCTProfileIsProfiling?: boolean;\n  WebSocket: any;\n  REACT_NAVIGATION_DEVTOOLS: WeakMap<\n    NavigationContainerRef<any>,\n    { readonly linking: LinkingOptions<any> }\n  >;\n};\n\nif (\n  // Only during development.\n  process.env.NODE_ENV !== 'production' &&\n  // Disable for SSR\n  typeof window !== 'undefined' &&\n  // Disable for non-metro runtimes\n  // NOTE(EvanBacon): This can probably be removed in favor of `expo/metro-config` injecting this file.\n  global.__METRO_GLOBAL_PREFIX__ != null\n) {\n  require('./setupFastRefresh');\n  require('./setupHMR');\n  require('./messageSocket');\n}\n"]}