| 3 | import { AudioModuleEvents, MicrophoneMode } from './AudioModule.types'; |
| 4 | |
| 5 | declare class AudioModule extends NativeModule<AudioModuleEvents> { |
| 6 | getPermissions(): Promise<boolean>; |
| 7 | startRecording(): Promise<void>; |
| 8 | enqueueAudio(base64EncodedAudio: string): Promise<void>; |
nothing calls this directly
no outgoing calls
no test coverage detected