Skip to content

Commit

Permalink
[query-string_v6.x.x] Add 'comma' value to array format (#3688)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgurr authored and pascalduez committed Jan 5, 2020
1 parent 7d38cac commit 6d6fd08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
declare module 'query-string' {
declare type ArrayFormat = 'none' | 'bracket' | 'index'
declare type ArrayFormat = 'none' | 'bracket' | 'index' | 'comma'
declare type ParseOptions = {|
arrayFormat?: ArrayFormat,
|}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
declare module 'query-string' {
declare type ArrayFormat = 'none' | 'bracket' | 'index'
declare type ArrayFormat = 'none' | 'bracket' | 'index' | 'comma'
declare type ParseOptions = {|
arrayFormat?: ArrayFormat,
|}
Expand Down

0 comments on commit 6d6fd08

Please sign in to comment.