UNPKG

userplex

Version:

The official TypeScript library for the Userplex API

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