mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-18 14:25:51 +00:00
feat: 完成第二版类型清理
This commit is contained in:
@@ -1,2 +1,14 @@
|
||||
const stub: any = {}
|
||||
export default stub
|
||||
// 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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user