aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/gradle
diff options
context:
space:
mode:
authorVadim Mishenev <vad-mishenev@yandex.ru>2022-09-01 17:21:56 +0300
committerGitHub <noreply@github.com>2022-09-01 17:21:56 +0300
commit92e3d56042d34cb64d672aa7099fe72831ed849f (patch)
tree1150f3e1edcd9d3f11e4ac1eefe603ff0d2cbb77 /integration-tests/gradle
parentc9f1d60af8776c14d35ed11f512c3c7b0dfad3a2 (diff)
downloaddokka-92e3d56042d34cb64d672aa7099fe72831ed849f.tar.gz
dokka-92e3d56042d34cb64d672aa7099fe72831ed849f.tar.bz2
dokka-92e3d56042d34cb64d672aa7099fe72831ed849f.zip
Add `DynamicTypeDeserializer` (#2645)
Diffstat (limited to 'integration-tests/gradle')
-rw-r--r--integration-tests/gradle/projects/it-js-ir-0/src/main/kotlin/RootPackageClass.kt7
1 files changed, 6 insertions, 1 deletions
diff --git a/integration-tests/gradle/projects/it-js-ir-0/src/main/kotlin/RootPackageClass.kt b/integration-tests/gradle/projects/it-js-ir-0/src/main/kotlin/RootPackageClass.kt
index 81c66d54..cbe6240e 100644
--- a/integration-tests/gradle/projects/it-js-ir-0/src/main/kotlin/RootPackageClass.kt
+++ b/integration-tests/gradle/projects/it-js-ir-0/src/main/kotlin/RootPackageClass.kt
@@ -1,6 +1,8 @@
@file:Suppress("unused")
import org.w3c.dom.url.URLSearchParams
+import org.w3c.dom.HTMLAnchorElement
+import react.dom.html.AnchorHTMLAttributes
import react.Props
import react.State
@@ -18,4 +20,7 @@ fun test(list: MutableList<Int>) = "list"
@JsModule("is-sorted")
@JsNonModule
-external fun <T> sorted(a: Array<T>): Boolean \ No newline at end of file
+external fun <T> sorted(a: Array<T>): Boolean
+
+// this declaration can be used to check deserialization of dynamic type
+external interface TextLinkProps: AnchorHTMLAttributes<HTMLAnchorElement> \ No newline at end of file