UNPKG

react-native-moengage

Version:

MoEngage is a mobile marketing automation company. This react-native SDK helps you track events, trigger smart notifications and in-apps, provides a drop-in Inbox Controller for notifications.

22 lines (17 loc) 471 B
import MoEInitConfig from "../models/MoEInitConfig"; /** * In Memory Cache for Plugin */ namespace MoEngageGlobalCache { /** * Plugin Init Config */ let initConfig: MoEInitConfig = MoEInitConfig.defaultConfig(); export function updateInitConfig(updatedConfig: MoEInitConfig) { initConfig = updatedConfig; } export function getInitConfig(): MoEInitConfig { return initConfig; } } export default MoEngageGlobalCache;