UNPKG

opentok-react-native

Version:
20 lines 688 B
import { type ConfigPlugin } from '@expo/config-plugins'; export interface OpentokPluginiOSProps { /** * iOS camera permission message * @default 'Allow $(PRODUCT_NAME) to access your camera for video calls' */ cameraPermission?: string; /** * iOS microphone permission message * @default 'Allow $(PRODUCT_NAME) to access your microphone for audio calls' */ microphonePermission?: string; } /** * Main Expo Config Plugin for opentok-react-native * Automatically configures native permissions and dependencies */ declare const withOpentok: ConfigPlugin<OpentokPluginiOSProps>; export default withOpentok; //# sourceMappingURL=index.d.ts.map