commonMain.tz.co.asoft.Later.kt Maven / Gradle / Ivy
package tz.co.asoft
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Deferred
import kotlin.jvm.JvmSynthetic
expect class Later(scope: CoroutineScope = LaterScope, deferred: Deferred) {
@JvmSynthetic
internal val scope: CoroutineScope
@JvmSynthetic
@PublishedApi
internal val deferred: Deferred
fun wait(): T
}