It seems that `kotlinx.browser` and `org.w3c.dom` ...
# webassembly
a
It seems that
kotlinx.browser
and
org.w3c.dom
imports disappeared in Kotlin 2.1.0? Is it expected and we should now define our own
external
things?
a
Hey, it's expected, and of course, you shouldn't define your own externals. We've moved it from our stdlib to a third-party library so as not to hardly depend on the Kotlin release cycle and update the web declarations more often. You can find them here: https://github.com/Kotlin/kotlinx-browser
🙌 2
a
Thank you!