UNPKG

@deepgram/sdk

Version:

Isomorphic Javascript client for Deepgram

16 lines (10 loc) 293 B
import { Readable } from "stream"; export type PrerecordedSource = UrlSource | Buffer | Readable; export type FileSource = Buffer | Readable; export interface UrlSource { url: string; } export interface TextSource { text: string; } export type AnalyzeSource = UrlSource | TextSource;