Promise
expect fun <T> Promise(coroutineContext: CoroutineContext = EmptyCoroutineContext, executor: (resolve: (T) -> Unit, reject: (Throwable) -> Unit) -> Unit): Promise<T>
Deprecated
Use CompletableDeferred instead
A simple interface compatible with JS Promise used for interop. In other cases just use CompletableDeferred instead.