Skip to content

Commit

Permalink
chore(ClientResponse): add missing field
Browse files Browse the repository at this point in the history
- add missing originalResponse field to ClientResponse interface
  • Loading branch information
ajimae committed Jun 2, 2024
1 parent da7dcf9 commit c7b4d59
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ export type ClientResponse<T = any> = {
body: T;
statusCode?: number;
headers?: Object;
originalRequest?: ClientRequest;
};
export type executeRequest = (request: ClientRequest) => Promise<ClientResponse>
Expand Down

0 comments on commit c7b4d59

Please sign in to comment.