export interface IInputProps
andre-dourado opened this issue · 5 comments
andre-dourado commented
Is it interesting export interface IInputProps for those who use Typescript?
xnimorz commented
Hi @andrewdourado
Yes, IInputProps is for TS interfaces. You can check It here https://unpkg.com/browse/react-maskinput@3.0.0/lib/index.d.ts
andre-dourado commented
I understand. But to use it I believe it is necessary to use export interface IInputProps
.
The idea is to add it to the code to define the types of the component. Something like:
import { IMaskInput } from 'react-imask';
interface Props extends IInputProps {
name: string;
}
xnimorz commented
Oh, yes, get it.
Fixed and published with react-maskinput@3.1.0
https://github.com/xnimorz/masked-input/blob/master/packages/react-maskinput/src/index.tsx#L10
xnimorz commented
Thank you!
andre-dourado commented
I thank you for the updates.