UNPKG

@deepgram/sdk

Version:

Isomorphic Javascript client for Deepgram

14 lines (10 loc) 245 B
import { DeepgramError } from "../errors"; export type DeepgramResponse<T> = SuccessResponse<T> | ErrorResponse; interface SuccessResponse<T> { result: T; error: null; } interface ErrorResponse { result: null; error: DeepgramError; }