···66}
7788/**
99- * Set whether the app's audio should mix with other apps' audio.
99+ * Set whether the app's audio should mix with other apps' audio. Will also resume background music playback when `false`
1010+ * if it was previously playing.
1011 * @param mixWithOthers
1212+ * @see https://developer.apple.com/documentation/avfaudio/avaudiosession/setactiveoptions/1616603-notifyothersondeactivation
1113 */
1212-export function setAudioMixWithOthers(mixWithOthers: boolean): void {
1313- throw new NotImplementedError({mixWithOthers})
1414+export function setAudioActive(active: boolean): void {
1515+ throw new NotImplementedError({active})
1416}
15171618/**