Skip to content

Commit

Permalink
fix REST client PostOptions type
Browse files Browse the repository at this point in the history
  • Loading branch information
david-mcafee committed Sep 13, 2023
1 parent 0285718 commit 69607e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api-rest/src/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ type JsonObject = { [name: string]: Json };

export type PostOptions = {
headers?: Record<string, string>;
body: JsonObject;
body: Record<string, unknown>;
region?: string;
serviceName?: string;
};
Expand Down

0 comments on commit 69607e2

Please sign in to comment.