UNPKG

sambanova

Version:

The official TypeScript library for the Samba Nova API

12 lines 476 B
import type { FinalRequestOptions } from "./request-options.mjs"; import { type SambaNova } from "../client.mjs"; export type APIResponseProps = { response: Response; options: FinalRequestOptions; controller: AbortController; requestLogID: string; retryOfRequestLogID: string | undefined; startTime: number; }; export declare function defaultParseResponse<T>(client: SambaNova, props: APIResponseProps): Promise<T>; //# sourceMappingURL=parse.d.mts.map