commonMain.epsilon.MultiFileField.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of epsilon-fields-jvm Show documentation
Show all versions of epsilon-fields-jvm Show documentation
A kotlin multiplatform library for headless input file fields
@file:JsExport
package epsilon
import kollections.List
import kotlinx.JsExport
import symphony.ListField
interface MultiFileField : ListField {
fun addFile(file: RawFile)
fun addAllFiles(file: List)
fun addUrl(url: String)
fun addAllUrls(url: List)
}