UNPKG

@appzung/expo-config-code-push

Version:

Config plugin to auto configure AppZung CodePush for React Native on prebuild

14 lines (13 loc) 384 B
import { type ConfigPlugin } from '@expo/config-plugins'; interface PluginProps { android?: { CodePushReleaseChannelPublicId: string; CodePushSigningPublicKey?: string; }; ios?: { CodePushReleaseChannelPublicId: string; CodePushSigningPublicKey?: string; }; } declare const _default: ConfigPlugin<PluginProps>; export default _default;