blob: 3c868df2d6367a4ec0bf7bbfbc06a110e98d6854 [file] [log] [blame]
/*
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package kotlinx.coroutines.experimental.timeunit
public expect enum class TimeUnit {
MILLISECONDS,
SECONDS;
public fun toMillis(time: Long): Long
}