Is there a way to tell Kotlin/JS to keep all funct...
# javascript
g
Is there a way to tell Kotlin/JS to keep all function names instead of adding a
@JsName
on each function?
👍 1
s
For interfaces I think you can mark it external
b
That goes for classes and global variables too
You can even combine external with actual to delegate js implementations
a
Can you mark a class you implement yourself as external? (e.g.,
external data class
)?