UNPKG

react-transcribe

Version:

React component for speech-to-text transcription with silence detection

10 lines (9 loc) 204 B
export type TranscriptInfo = { transcript: string; interimTranscript: string; resetTranscript: () => void; }; export type SpeechToggleInfo = { isListening: boolean; type: 'device'; };