UNPKG

@deepgram/sdk

Version:

Isomorphic Javascript client for Deepgram

16 lines (10 loc) 303 B
import type { Readable } from "node: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;