Ayla
07/03/2023, 2:05 PMexpect/actual
as follows:
//common
expect class PlatformElement
//android
//works
actual typealias PlatformElement = View
//js
//error:The following declaration is incompatible because modality is different
actual typealias PlatformElement = HTMLElement
I found HTMLElement is abstract
, so it fails. But I won't use the constrcutor, I just want to declare the type, so what should I do ?jw
07/03/2023, 2:11 PMAyla
07/03/2023, 2:29 PM