Kotlin JS and GWT interop

The Kotlin JS compiler emits Java Script code from Kotlin code. GWT emits Java Script code from Java source code.

Is it possible to easily connect the JS generated by the Kotlin compiler and the JS generated by the GWT compiler? How?

+4
source share
1 answer

I think the easiest way to intercept now is to interop through javascript, since both have functionality for this.

0
source

All Articles