diff options
author | Hailey <me@haileyok.com> | 2024-08-09 14:35:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-09 14:35:26 -0700 |
commit | 5bfe5aa503d73e687ccc048efc5138edea97bea3 (patch) | |
tree | 2777c1371e9c7a1f7d4e31e50b1bd0137ec82e67 /modules/expo-bluesky-swiss-army/src/PlatformInfo/index.ts | |
parent | dd0d50a6f0f69d8b58f7dd26303b6b89528d2d04 (diff) | |
download | voidsky-5bfe5aa503d73e687ccc048efc5138edea97bea3.tar.zst |
[Video] More tweaks to `AVAudioSession` options (#4910)
Diffstat (limited to 'modules/expo-bluesky-swiss-army/src/PlatformInfo/index.ts')
-rw-r--r-- | modules/expo-bluesky-swiss-army/src/PlatformInfo/index.ts | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.ts b/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.ts index 2665748b0..5659339fb 100644 --- a/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.ts +++ b/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.ts @@ -1,9 +1,23 @@ import {NotImplementedError} from '../NotImplemented' +import {AudioCategory} from './types' export function getIsReducedMotionEnabled(): boolean { throw new NotImplementedError() } +/** + * Set whether the app's audio should mix with other apps' audio. + * @param mixWithOthers + */ export function setAudioMixWithOthers(mixWithOthers: boolean): void { throw new NotImplementedError({mixWithOthers}) } + +/** + * Set the audio category for the app. + * @param audioCategory + * @platform ios + */ +export function setAudioCategory(audioCategory: AudioCategory): void { + throw new NotImplementedError({audioCategory}) +} |