so here’s the situation. I have a class in a libra...
# multiplatform
s
so here’s the situation. I have a class in a library that looks like this:
Copy code
class SomeImpl<out P:Prop>(props: P)
and so I declare this in my common code:
Copy code
expect interface Prop
expect class Impl<out P:Prop>(props: P)
so, to provide the implementation, I’m trying to use a type alias:
Copy code
actual typealias Impl<P> = SomeImpl<P>