I’m not sure why but I can’t get generics to work ...
# reaktive
s
I’m not sure why but I can’t get generics to work with wrapper classes in reaktive. I have this function defined in common code:
Copy code
class TestPresenter {
  fun platformName(): SingleWrapper<String> {
    return singleFromFunction { "macOS" }.wrap()
  }
}
but the generated class is showing up as
ReaktiveSingleWrapper
instead of
ReaktiveSingleWrapper<String>
.