My suspend functions that are not marked with `@Th...
# ios
i
My suspend functions that are not marked with
@Throws
in shared module are also exported as throwing in the swift code. Am I missing something?
n
That is expected in order for any `CancellationException`s to be propagated. You can read more about it in the Errors and exceptions section on Interoperability with Swift/Objective-C 🙂
i
Ahh, understood. Thanks!