File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change
1
+ // Internal index that pulls in all the different platforms, for documentation
2
+ // generation purposes only.
3
+
4
+ // Core (Browser) index
5
+ export * from './index' ;
6
+
7
+ export { cordovaPopupRedirectResolver } from './index.cordova' ;
8
+ export { reactNativeLocalPersistence } from './index.rn' ;
Original file line number Diff line number Diff line change @@ -35,6 +35,12 @@ import { getReactNativePersistence } from './src/platform_react_native/persisten
35
35
// Core functionality shared by all clients
36
36
export * from './src' ;
37
37
38
+ /**
39
+ * An implementation of {@link Persistence} of type 'LOCAL' for use in React
40
+ * Native environments.
41
+ *
42
+ * @public
43
+ */
38
44
export const reactNativeLocalPersistence =
39
45
getReactNativePersistence ( AsyncStorage ) ;
40
46
You can’t perform that action at this time.
0 commit comments