All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.it.unibo.tuprolog.serialize.Deserializer.kt Maven / Gradle / Ivy

The newest version!
package it.unibo.tuprolog.serialize

import kotlin.js.JsName

interface Deserializer {
    @JsName("mimeType")
    val mimeType: MimeType

    @JsName("deserialize")
    fun deserialize(string: String): T

    @JsName("deserializeMany")
    fun deserializeMany(string: String): Iterable
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy