15 lines
371 B
TypeScript
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
|
|
}
|