Skip to content

Commit a32227e

Browse files
committed
fix(exports): Changed type from object to any
1 parent f5c8854 commit a32227e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/types.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ export type HttpMethod =
1313
export interface HandlerArgument {
1414
input: RequestInfo;
1515
init?: RequestInit;
16-
body?: object;
17-
pathParams: object;
18-
queryParams: object;
16+
body?: any;
17+
pathParams: any;
18+
queryParams: any;
1919
url: RequestUrl;
2020
method: HttpMethod;
2121
}

0 commit comments

Comments
 (0)