janvladimirmostert
06/06/2020, 12:37 PM@JsName("RoomState")
data class RoomState(
val numberOfRooms: Int
)
fun main() {
console.log(RoomState::class)
}
which now allows me to do
this.projectname.RoomState()
in pure JS, i exclude that console.log, RoomState is not availablechristophsturm
06/06/2020, 1:01 PMkotlin {
js {dceTask {
keep("ktor-ktor-io.\$\$importsForInline\$\$.<http://ktor-ktor-io.io.ktor.utils.io|ktor-ktor-io.io.ktor.utils.io>")
}
}
}
janvladimirmostert
06/06/2020, 1:38 PM