-
-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
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
Bogus typings #52
Comments
1 task
Related to #50 which recently changed the typings. |
Feel free to contribute... I am not very good in how typings work. |
Merged
@IonicaBizau I opened #60 to fix this. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
06527e4#diff-0e3ac3694919aca1db302bc3ebe669f2R34
export default
should beexport =
, according to the way your package is actually behaving.export default
makes TypeScript think that there is adefault
property likeexports.default =
, which is not the case.The text was updated successfully, but these errors were encountered: