Skip to content

Commit

Permalink
fix: make useGrouping option optional
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Aug 1, 2024
1 parent 3c4fa0f commit 6e665be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export type NumberFormatOptions = Intl.NumberFormatOptions & {
currencySign?: 'accounting' | 'standard'
currencyDisplay?: 'symbol' | 'narrowSymbol' | 'code' | 'name'
compactDisplay?: 'short' | 'long'
useGrouping: 'min2' | 'auto' | 'always' | boolean
useGrouping?: 'min2' | 'auto' | 'always' | boolean
}

/**
Expand Down

0 comments on commit 6e665be

Please sign in to comment.