We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The type Props has not been exported. I tried to use Tooltip.propTypes as well, but I get this Typescript error:
type Props
Tooltip.propTypes
'Tooltip' only refers to a type, but is being used as a namespace here.
then I tried to use typeof Tooltip.propTypes, but got another Typescript error:
typeof Tooltip.propTypes
Property 'propTypes' does not exist on type 'typeof Tooltip'.ts(2339)
I there a proper way to use the type? If not then please export the type. Thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
type Props
has not been exported.I tried to use
Tooltip.propTypes
as well, but I get this Typescript error:then I tried to use
typeof Tooltip.propTypes
, but got another Typescript error:I there a proper way to use the type? If not then please export the type.
Thanks
The text was updated successfully, but these errors were encountered: