@miklermpz/expo-audio-studio
Version:
This is a forked version of the original [expo-audio-studio](https://github.com/deeeed/expo-audio-stream/blob/main/packages/expo-audio-studio/README.md) by Arthur Breton <abreton@siteed.net> (https://github.com/deeeed)
23 lines (22 loc) • 762 B
text/typescript
import { ConfigPlugin } from '@expo/config-plugins';
interface AudioStreamPluginOptions {
enablePhoneStateHandling?: boolean;
enableNotifications?: boolean;
enableBackgroundAudio?: boolean;
enableDeviceDetection?: boolean;
iosBackgroundModes?: {
useVoIP?: boolean;
useAudio?: boolean;
useProcessing?: boolean;
useLocation?: boolean;
useExternalAccessory?: boolean;
};
iosConfig?: {
allowBackgroundAudioControls?: boolean;
backgroundProcessingTitle?: string;
microphoneUsageDescription?: string;
notificationUsageDescription?: string;
};
}
declare const withRecordingPermission: ConfigPlugin<AudioStreamPluginOptions>;
export default withRecordingPermission;