UNPKG

@replit/connectors

Version:

The official TypeScript library for the Replit API

12 lines 470 B
import type { FinalRequestOptions } from "./request-options.mjs"; import { type Replit } 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: Replit, props: APIResponseProps): Promise<T>; //# sourceMappingURL=parse.d.mts.map