commonMain.com.bselzer.ktx.datetime.format.DateTimeFormatter.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ktx-datetime-jvm Show documentation
Show all versions of ktx-datetime-jvm Show documentation
Extensions for the Kotlin standard library and third-party libraries.
The newest version!
package com.bselzer.ktx.datetime.format
import kotlinx.datetime.Instant
interface DateTimeFormatter {
fun format(instant: Instant): String
}