UNPKG

@deepgram/sdk

Version:

Isomorphic Javascript client for Deepgram

13 lines 422 B
/// <reference types="node" /> /// <reference types="node" /> import { Readable } from "stream"; export declare type PrerecordedSource = UrlSource | Buffer | Readable; export declare type FileSource = Buffer | Readable; export interface UrlSource { url: string; } export interface TextSource { text: string; } export declare type AnalyzeSource = UrlSource | TextSource; //# sourceMappingURL=DeepgramSource.d.ts.map