This repository was archived by the owner on Jul 10, 2022. It is now read-only.
File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ This are the differences to the PHP version:
18
18
Through [ NPM] ( https://www.npmjs.com ) as [ @chubbyjs/psr-http-message ] [ 1 ] .
19
19
20
20
``` sh
21
- npm i @chubbyjs/psr-http-message@1.0.3
21
+ npm i @chubbyjs/psr-http-message@1.1.0
22
22
```
23
23
24
24
## Copyright
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @chubbyjs/psr-http-message" ,
3
- "version" : " 1.0.3 " ,
3
+ "version" : " 1.1.0 " ,
4
4
"description" : " Common Http-message Interface (PHP FIG PSR-7)." ,
5
5
"keywords" : [
6
6
" psr" ,
Original file line number Diff line number Diff line change 1
1
import RequestInterface from './RequestInterface' ;
2
2
3
- export type QueryParams = Map < string , QueryParams > | Array < QueryParams > | string ;
4
- export type ParsedBody = Map < string , ParsedBody > | Array < ParsedBody > | string | number | boolean | null ;
3
+ export type QueryParams = { [ key : string ] : QueryParams } | Array < QueryParams > | string ;
4
+ export type ParsedBody = { [ key : string ] : ParsedBody } | Array < ParsedBody > | string | number | boolean | null ;
5
5
6
6
interface ServerRequestInterface extends RequestInterface {
7
7
getCookieParams ( ) : Map < string , string > ;
You can’t perform that action at this time.
0 commit comments