PromiseIOS

data class PromiseIOS(val resolve: IOSResolvePromise<Any?>, val reject: IOSRejectPromise)

Constructors

Link copied to clipboard

Properties

Link copied to clipboard
Link copied to clipboard

Extensions

Link copied to clipboard
inline fun <T> PromiseIOS.launch(scope: CoroutineScope, crossinline action: suspend () -> T)
Link copied to clipboard
inline fun <T> PromiseIOS.launchJson(scope: CoroutineScope, crossinline action: suspend () -> T)
Link copied to clipboard
inline fun <T> PromiseIOS.runCatchingWithArguments(action: () -> T, argumentsTransform: (T) -> Any?)