UNPKG

@giautm/react-native-branch

Version:

Config plugin to auto configure react-native-branch on prebuild

7 lines (6 loc) 407 B
import type { ConfigPlugin, InfoPlist } from "@expo/config-plugins"; import type { ExpoConfig } from "@expo/config-types"; import type { ConfigData } from "./types"; export declare function getBranchApiKey(config: Pick<ExpoConfig, "ios">): string | null; export declare function setBranchApiKey(apiKey: string, infoPlist: InfoPlist): InfoPlist; export declare const withBranchIOS: ConfigPlugin<ConfigData>;