Closed rickclephas closed 1 year ago
You could for example refine your Flow property to an AnyPublisher property:
Flow
AnyPublisher
class Clock { @NativeCoroutinesRefined val time: StateFlow<Long> }
extension Clock { var time: AnyPublisher<KotlinLong, Error> { createPublisher(for: __time) } }
Fixes #119
You could for example refine your
Flow
property to anAnyPublisher
property:Fixes #119