UNPKG

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.

10 lines (9 loc) 337 B
"use strict"; import { NativeModules } from 'react-native'; const LINKING_ERROR = `react-native-deepgram: Native code not linked—did you run “pod install” & rebuild?`; export const Deepgram = NativeModules.Deepgram ?? new Proxy({}, { get() { throw new Error(LINKING_ERROR); } }); //# sourceMappingURL=NativeDeepgram.js.map