From da2dc2a0e8c227a2ba385c00ccf3922d3261f119 Mon Sep 17 00:00:00 2001 From: Kacper Serewis Date: Mon, 14 Oct 2024 23:38:38 +0200 Subject: [PATCH] add stub RNWatch for web --- lib/RNWatch.web.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lib/RNWatch.web.ts diff --git a/lib/RNWatch.web.ts b/lib/RNWatch.web.ts new file mode 100644 index 0000000..fb6d87e --- /dev/null +++ b/lib/RNWatch.web.ts @@ -0,0 +1,11 @@ +/** + * Stub of RNWatch for Web. + * + * @providesModule RNWatch + */ +'use strict'; + +export const useInstalled = () => false; +export const usePaired = () => false; +export const useReachability = () => false; +export const useApplicationContext = () => false;