[Videos] Add iOS function to set AVAudioSession.CategoryOptions to .mixWithOthers (#4905)

* audio mixing pref

* lint
This commit is contained in:
Hailey 2024-08-09 03:05:12 -07:00 committed by GitHub
parent a4f0c9c753
commit cb574b7be3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 26 additions and 0 deletions

View file

@ -3,3 +3,7 @@ import {NotImplementedError} from '../NotImplemented'
export function getIsReducedMotionEnabled(): boolean {
throw new NotImplementedError()
}
export function setAudioMixWithOthers(mixWithOthers: boolean): void {
throw new NotImplementedError({mixWithOthers})
}