I've been able to call Kotlin/JS from the browser when the modules are set to "plain", but can't figure it out when "UMD". Can anyone point to an example?
Tristan Blakers
10/24/2020, 7:44 AM
For the record, you can access KotlinJS as follows from JS:
Copy code
val myModuleName = "testModule"
window[myModuleName].myFunction()