@lobehub/tts
Version:
A high-quality & reliable TTS React Hooks library
10 lines (9 loc) • 347 B
text/typescript
import { OpenAISTTAPI, OpenAISTTPayload } from "../../core/OpenAISTT/index.mjs";
import { SWRConfiguration } from "swr";
//#region src/react/useOpenAISTT/useOpenAISTTCore.d.ts
interface OpenAISTTCoreOptions extends OpenAISTTPayload, SWRConfiguration {
api?: OpenAISTTAPI;
shouldFetch?: boolean;
}
//#endregion
export { OpenAISTTCoreOptions };