8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c95d058 commit f624f44Copy full SHA for f624f44
packages/types/src/misc.ts
@@ -1,3 +1,5 @@
1
+import { QueryParams } from './request';
2
+
3
/**
4
* Data extracted from an incoming request to a node server
5
*/
@@ -16,8 +18,8 @@ export interface ExtractedNodeRequestData {
16
18
/** String representing the cookies sent along with the request */
17
19
cookies?: { [key: string]: string };
20
- /** The request's query string, without the leading '?' */
- query_string?: string;
21
+ /** The request's query params */
22
+ query_string?: QueryParams;
23
24
/** Any data sent in the request's body, as a JSON string */
25
data?: string;
0 commit comments