janvladimirmostert
06/20/2020, 1:30 PM@JsExport
//@Serializable
@ExperimentalJsExport
data class Blah(
var name: String? = null,
)
or
//@JsExport
@Serializable
//@ExperimentalJsExport
data class Blah(
var name: String? = null,
)
With both of them, i get this error
e: java.lang.AssertionError: Properties without fields are not supported com.company.Blah.Companion_instance
spierce7
06/20/2020, 5:05 PMjanvladimirmostert
06/20/2020, 6:45 PM