xnimorz/masked-input

export interface IInputProps

andre-dourado opened this issue · 5 comments

Is it interesting export interface IInputProps for those who use Typescript?

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

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;
}

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

Thank you!

I thank you for the updates.