@lobehub/tts
Version:
A high-quality & reliable TTS React Hooks library
12 lines • 1.43 kB
JavaScript
var _excluded = ["autoStop"];
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
import { useSpeechRecognitionAutoStop as speechRecognitionAutoStop } from "./useSpeechRecognitionAutoStop";
import { useSpeechRecognitionInteractive as speechRecognitionInteractive } from "./useSpeechRecognitionInteractive";
export var useSpeechRecognition = function useSpeechRecognition(locale) {
var _ref = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},
autoStop = _ref.autoStop,
rest = _objectWithoutProperties(_ref, _excluded);
var useSelectedHook = autoStop ? speechRecognitionAutoStop : speechRecognitionInteractive;
return useSelectedHook(locale, rest);
};