Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
fix(FormMaskedInput): Fix incorrect flow type
Browse files Browse the repository at this point in the history
  • Loading branch information
jonthomp committed May 15, 2018
1 parent 290966f commit 2b5dc0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Form/FormMaskedInput.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import cn from "classnames";
import MaskedInput from "react-text-mask";

type Props = {|
+mask: ({ [string]: string }) => {} | Array<string>,
+mask: Array<string | RegExp>,
+className?: string,
+placeholder?: string,
+guide?: boolean,
Expand Down

0 comments on commit 2b5dc0a

Please sign in to comment.