2026-03-31 23:03:47 +08:00

15 lines
371 B
TypeScript

// Auto-generated stub — replace with real implementation
export function isNativeAudioAvailable(): boolean {
return false
}
export function isNativeRecordingActive(): boolean {
return false
}
export function stopNativeRecording(): void {}
export function startNativeRecording(
_onData: (data: Buffer) => void,
_onEnd: () => void,
): boolean {
return false
}