I'd like classes defined in `commonMain` to extend...
# multiplatform
e
I'd like classes defined in
commonMain
to extend specific interface for jvm only. But I'm afraid that's not possible, right? What are the main strategies for this case, other than leaving the interface empty/dummy on the other platform?
a
Make the class expect/actual? So on JVM it would override interface methods.
e
damn, so easy sorry for the stupid question 😄