sambanova
Version:
The official TypeScript library for the Samba Nova API
12 lines • 473 B
TypeScript
import type { FinalRequestOptions } from "./request-options.js";
import { type SambaNova } from "../client.js";
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.ts.map