is there are a way to define a concrete method for...
# announcements
d
is there are a way to define a concrete method for an external class/interface that will actually get called in javascript?
Copy code
@JsName("lib.Component")
external interface Component : ShouldUpdate {
    override fun shouldComponentUpdate() = false
}
^ shouldComponentUpdate doesn't even appear in the compiled code.