Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
marandaneto committed Mar 1, 2024
1 parent 0dc5b20 commit e9da629
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion posthog-react-native/src/posthog-rn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,13 @@ export type PostHogOptions = PostHogCoreOptions & {
| PostHogCustomAppProperties
| ((properties: PostHogCustomAppProperties) => PostHogCustomAppProperties)
/** Allows you to provide a custom and synchronous storage such as mmkv
* customStorage if provided, has precedence over customAsyncStorage
* customStorage if provided, has precedence over customAsyncStorage.
* If no customStorage nor customAsyncStorage are available, the SDK will use in-memory storage.
*/
customStorage?: PostHogCustomSyncStorage
/** Allows you to provide a custom and asynchronous storage such as async-storage, expo-file-system or something else.
* By default, the SDK will try to load expo-file-system and then async-storage if none is provided.
* If no customStorage nor customAsyncStorage are available, the SDK will use in-memory storage.
*/
customAsyncStorage?: PostHogCustomAsyncStorage
captureNativeAppLifecycleEvents?: boolean
Expand Down

0 comments on commit e9da629

Please sign in to comment.