@iterable/react-native-sdk
Version:
Iterable SDK for React Native.
12 lines (11 loc) • 313 B
text/typescript
/**
* Different types of triggers for displaying in-app messages.
*/
export enum IterableInAppTriggerType {
/** Tries to display the in-app automatically immediately */
immediate = 0,
/** Used for Push to in-app */
event = 1,
/** Do not display the in-app automatically via the SDK */
never = 2,
}