UNPKG

@chriskoo/react-native-branch

Version:

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

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