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
With 1.3.2 it was possible to import type { PeerJSOption } from "peerjs", but this now fails with the following TypeScript error:
import type { PeerJSOption } from "peerjs"
Module '"peerjs"' has no exported member 'PeerJSOption'. Did you mean to use 'import PeerJSOption from "peerjs"' instead?
But the default export is not PeerJSOption but the Peer class. Is there a way to workaround this?
PeerJSOption
Peer
The text was updated successfully, but these errors were encountered:
chore(release): 1.4.3 [skip ci]
bab2b0c
## [1.4.3](v1.4.2...v1.4.3) (2022-05-13) ### Bug Fixes * **typings:** export interfaces ([979e695](979e695)), closes [#953](#953)
🎉 This issue has been resolved in version 1.4.3 🎉
The release is available on:
Your semantic-release bot 📦🚀
Sorry, something went wrong.
979e695
Hey @delucis. Thanks for the report! Patch should be on npm by now, sorry for breaking your stuff.
Wow, that was fast! Thanks so much ❤️
No branches or pull requests
With 1.3.2 it was possible to
import type { PeerJSOption } from "peerjs"
, but this now fails with the following TypeScript error:But the default export is not
PeerJSOption
but thePeer
class. Is there a way to workaround this?The text was updated successfully, but these errors were encountered: