Skip to content

Commit

Permalink
Fix arrayFormatSeparator TypeScript type (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeSidSmith committed Mar 2, 2020
1 parent 4d51018 commit 338072a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.d.ts
Expand Up @@ -61,7 +61,7 @@ export interface ParseOptions {
@default ,
*/
readonly arrayFormatSeparator?: 'string';
readonly arrayFormatSeparator?: string;

/**
Supports both `Function` as a custom sorting function or `false` to disable sorting.
Expand Down Expand Up @@ -229,7 +229,7 @@ export interface StringifyOptions {
@default ,
*/
readonly arrayFormatSeparator?: 'string';
readonly arrayFormatSeparator?: string;

/**
Supports both `Function` as a custom sorting function or `false` to disable sorting.
Expand Down

0 comments on commit 338072a

Please sign in to comment.