This repository was archived by the owner on Jul 10, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 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:
1818Through [ NPM] ( https://www.npmjs.com ) as [ @chubbyjs/psr-http-message ] [ 1 ] .
1919
2020``` sh
21- npm i @chubbyjs/psr-http-message@1.0.3
21+ npm i @chubbyjs/psr-http-message@1.1.0
2222```
2323
2424## Copyright
Original file line number Diff line number Diff line change 11{
22 "name" : " @chubbyjs/psr-http-message" ,
3- "version" : " 1.0.3 " ,
3+ "version" : " 1.1.0 " ,
44 "description" : " Common Http-message Interface (PHP FIG PSR-7)." ,
55 "keywords" : [
66 " psr" ,
Original file line number Diff line number Diff line change 11import RequestInterface from './RequestInterface' ;
22
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 ;
55
66interface ServerRequestInterface extends RequestInterface {
77 getCookieParams ( ) : Map < string , string > ;
You can’t perform that action at this time.
0 commit comments