Bernhard
07/27/2024, 1:09 PM@JsPlainObject
external interface Test {
fun test()
}
should I file a bug?broadway_lamb
07/27/2024, 2:13 PMturansky
07/27/2024, 3:04 PM@JsPlainObject
external interface Test {
val test: () -> Unit
}
Bernhard
07/27/2024, 3:04 PMturansky
07/27/2024, 3:05 PMturansky
07/27/2024, 3:07 PM@JsPlainObject
external interface Test {
fun test()
fun test(s: String)
fun test(s: String, n: Number)
}
Test(
test = ??? // which type
)
Bernhard
07/27/2024, 3:07 PMturansky
07/27/2024, 3:08 PMgood idea to error out with a better errorIt's issue 🙂