react-native-deepgram
Version:
React Native SDK for Deepgram's AI-powered speech-to-text, real-time transcription, and text intelligence APIs. Supports live audio streaming, file transcription, sentiment analysis, and topic detection for iOS and Android.
14 lines (13 loc) • 452 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.Deepgram = void 0;
var _reactNative = require("react-native");
const LINKING_ERROR = `react-native-deepgram: Native code not linked—did you run “pod install” & rebuild?`;
const Deepgram = exports.Deepgram = _reactNative.NativeModules.Deepgram ?? new Proxy({}, {
get() {
throw new Error(LINKING_ERROR);
}
});
//# sourceMappingURL=NativeDeepgram.js.map