If I have a class in `commonMain` that I want to p...
# getting-started
j
If I have a class in
commonMain
that I want to provide specific implementation on ONLY ONE multiplatform target, while using default common implementation for other, is there a way to do it without making class
expect
and spamming
actual
in every target?
j
typealias in the rest of targets is the only way right now
but you can generate a target which has all targets except that specific one
so you only have two actual
s
Maybe ask in #multiplatform?