@lobehub/tts
Version:
A high-quality & reliable TTS React Hooks library
10 lines (9 loc) • 496 B
text/typescript
import { SpeechRecognitionRecorderOptions } from "../useSpeechRecognition/useSpeechRecognitionAutoStop.mjs";
import { OpenAISTTCoreOptions } from "./useOpenAISTTCore.mjs";
import { SWRConfiguration } from "swr";
//#region src/react/useOpenAISTT/useOpenAISTTRecorder.d.ts
interface OpenAISTTRecorderOptions extends SpeechRecognitionRecorderOptions, SWRConfiguration, Partial<OpenAISTTCoreOptions> {
onFinished?: SWRConfiguration['onSuccess'];
}
//#endregion
export { OpenAISTTRecorderOptions };