react-native-whip-whep
Version:
An implementation of WHIP and WHEP protocols functionalities for React Native.
19 lines (18 loc) • 685 B
TypeScript
import { ConfigPlugin } from '@expo/config-plugins';
import { WhipWhepPluginOptions } from './types';
/**
* Generates the Podfile snippet that adds the broadcast extension target.
* This snippet adds the necessary WebRTC dependency to the extension.
*/
export declare function getSbePodfileSnippet(props: WhipWhepPluginOptions): string;
/**
* Main iOS plugin function.
* Applies all iOS-specific configurations conditionally based on options.
*
* This orchestrates:
* - Screen sharing setup (if enabled)
* - Deployment target configuration
* - Picture-in-Picture support
*/
declare const withWhipWhepIos: ConfigPlugin<WhipWhepPluginOptions>;
export default withWhipWhepIos;