I want to do the following: In my common code: `...
# multiplatform
n
I want to do the following: In my common code:
Copy code
header class Random {
    fun nextInt(bounds: Int): Int
}
For the JS platform:
Copy code
class Random { ... }
And for the JVM platform:
Copy code
impl typealias Random = java.util.Random