UNPKG

@appzung/react-native-code-push

Version:

React Native plugin for the CodePush service

17 lines (12 loc) 431 B
import { NativeRNAppZungCodePushModule } from './NativeRNAppZungCodePushModule'; import type { Configuration } from './types'; let config: Configuration; export async function getConfiguration() { if (!config) { config = await NativeRNAppZungCodePushModule.getConfiguration(); } return config; } export async function reloadCachedConfiguration() { config = await NativeRNAppZungCodePushModule.getConfiguration(); }