Skip to content

Commit

Permalink
Merge pull request #951 from ilnicki/spinner-types-fix
Browse files Browse the repository at this point in the history
Fixed #1001 - Made spinner formatInput related types optional.
  • Loading branch information
mertsincan authored Aug 28, 2019
2 parents 7eabf4b + 1858f93 commit f3927f3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/spinner/Spinner.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ interface SpinnerProps {
step?: number;
min?: number;
max?: number;
formatInput: boolean;
decimalSeparator: string;
thousandSeparator: string;
formatInput?: boolean;
decimalSeparator?: string;
thousandSeparator?: string;
disabled?: boolean;
required?: boolean;
tabIndex?: number;
Expand Down

0 comments on commit f3927f3

Please sign in to comment.