I have tried ``` interface State<out A, S> {...
# arrow
z
I have tried
Copy code
interface State<out A, S> {
    val runState: (s: S) -> Pair<A, S>
}
But I want to compile to JS and this only works on JVM.