From fafe50f80ae21560730b68a71f33ae8396a20105 Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Mon, 5 Dec 2022 07:00:31 +0600 Subject: [PATCH] suppress kdocs of uniupload in actual realizations --- .../kotlin/dev/inmo/micro_utils/ktor/client/ActualUniUpload.kt | 1 + .../kotlin/dev/inmo/micro_utils/ktor/client/ActualUniUpload.kt | 1 + 2 files changed, 2 insertions(+) diff --git a/ktor/client/src/jsMain/kotlin/dev/inmo/micro_utils/ktor/client/ActualUniUpload.kt b/ktor/client/src/jsMain/kotlin/dev/inmo/micro_utils/ktor/client/ActualUniUpload.kt index e2a10effbe2..92bd078fb47 100644 --- a/ktor/client/src/jsMain/kotlin/dev/inmo/micro_utils/ktor/client/ActualUniUpload.kt +++ b/ktor/client/src/jsMain/kotlin/dev/inmo/micro_utils/ktor/client/ActualUniUpload.kt @@ -28,6 +28,7 @@ import org.w3c.xhr.XMLHttpRequestResponseType * @param data [Map] where keys will be used as names for multipart parts and values as values. If you will pass * [dev.inmo.micro_utils.common.MPPFile] (File from JS or JVM platform). Also you may pass [UniUploadFileInfo] as value * in case you wish to pass other source of multipart binary data than regular file + * @suppress */ actual suspend fun HttpClient.uniUpload( url: String, diff --git a/ktor/client/src/jvmMain/kotlin/dev/inmo/micro_utils/ktor/client/ActualUniUpload.kt b/ktor/client/src/jvmMain/kotlin/dev/inmo/micro_utils/ktor/client/ActualUniUpload.kt index 27661c479f0..572785ca371 100644 --- a/ktor/client/src/jvmMain/kotlin/dev/inmo/micro_utils/ktor/client/ActualUniUpload.kt +++ b/ktor/client/src/jvmMain/kotlin/dev/inmo/micro_utils/ktor/client/ActualUniUpload.kt @@ -27,6 +27,7 @@ import java.io.File * @param data [Map] where keys will be used as names for multipart parts and values as values. If you will pass * [dev.inmo.micro_utils.common.MPPFile] (File from JS or JVM platform). Also you may pass [UniUploadFileInfo] as value * in case you wish to pass other source of multipart binary data than regular file + * @suppress */ actual suspend fun HttpClient.uniUpload( url: String,