about summary refs log tree commit diff
path: root/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.web.ts
diff options
context:
space:
mode:
authorHailey <me@haileyok.com>2024-08-09 14:35:26 -0700
committerGitHub <noreply@github.com>2024-08-09 14:35:26 -0700
commit5bfe5aa503d73e687ccc048efc5138edea97bea3 (patch)
tree2777c1371e9c7a1f7d4e31e50b1bd0137ec82e67 /modules/expo-bluesky-swiss-army/src/PlatformInfo/index.web.ts
parentdd0d50a6f0f69d8b58f7dd26303b6b89528d2d04 (diff)
downloadvoidsky-5bfe5aa503d73e687ccc048efc5138edea97bea3.tar.zst
[Video] More tweaks to `AVAudioSession` options (#4910)
Diffstat (limited to 'modules/expo-bluesky-swiss-army/src/PlatformInfo/index.web.ts')
-rw-r--r--modules/expo-bluesky-swiss-army/src/PlatformInfo/index.web.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.web.ts b/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.web.ts
index 917c97396..cb64d00ce 100644
--- a/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.web.ts
+++ b/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.web.ts
@@ -1,4 +1,5 @@
 import {NotImplementedError} from '../NotImplemented'
+import {AudioCategory} from './types'
 
 export function getIsReducedMotionEnabled(): boolean {
   if (typeof window === 'undefined') {
@@ -10,3 +11,7 @@ export function getIsReducedMotionEnabled(): boolean {
 export function setAudioMixWithOthers(mixWithOthers: boolean): void {
   throw new NotImplementedError({mixWithOthers})
 }
+
+export function setAudioCategory(audioCategory: AudioCategory): void {
+  throw new NotImplementedError({audioCategory})
+}