diff --git a/src/index.web.tsx b/src/index.web.tsx new file mode 100644 index 0000000..af04354 --- /dev/null +++ b/src/index.web.tsx @@ -0,0 +1,16 @@ +import { StartNetworkLoggingOptions } from './types'; + +// eslint-disable-next-line @typescript-eslint/no-unused-vars +export const startNetworkLogging = (options?: StartNetworkLoggingOptions) => { + console.warn('startNetworkLogging is not implemented on this platform'); +}; + +export const getRequests = () => []; + +export const clearRequests = () => {}; + +export { getBackHandler } from './backHandler'; + +export { ThemeName } from './theme'; + +export default () => null;