Skip to content

Commit

Permalink
reversed name<->x key
Browse files Browse the repository at this point in the history
  • Loading branch information
rnegron committed Jan 29, 2024
1 parent a1f99ff commit 19d5532
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export interface Bundle<InputData = { [x: string]: any }> {
rawRequest?: Partial<{
method: HttpMethod;
querystring: string;
headers: { [name: string]: string };
headers: { [x: string]: string };
content: string;
}>;
cleanedRequest?:
Expand Down Expand Up @@ -84,7 +84,7 @@ export interface HttpRequestOptions {
compress?: boolean;
follow?: number;
form?: object;
headers?: { [x: string]: string };
headers?: { [name: string]: string };
json?: object | any[];
method?: HttpMethod;
params?: object;
Expand Down

0 comments on commit 19d5532

Please sign in to comment.