e-invoice-api
Version:
The official TypeScript library for the e-invoice API
12 lines • 474 B
text/typescript
import type { FinalRequestOptions } from "./request-options.mjs";
import { type EInvoice } 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: EInvoice, props: APIResponseProps): Promise<T>;
//# sourceMappingURL=parse.d.mts.map