Files
kotlin-fork/libraries/stdlib/api/js-v1/org.w3c.dom.parsing.kt
T
Ilya Goncharov 688894aabc [JS, Stdlib] Move DOM API to separate module kotlin-dom-api-compat
[JS, Stdlib] Leave sources of dom api inside stdlib

[Stdlib, JS] Leave ItemArrayLike inside stdlib
2022-12-22 15:45:23 +00:00

11 lines
422 B
Kotlin

/*∆*/ public open external class DOMParser {
/*∆*/ public constructor DOMParser()
/*∆*/
/*∆*/ public final fun parseFromString(str: kotlin.String, type: dynamic): org.w3c.dom.Document
/*∆*/ }
/*∆*/
/*∆*/ public open external class XMLSerializer {
/*∆*/ public constructor XMLSerializer()
/*∆*/
/*∆*/ public final fun serializeToString(root: org.w3c.dom.Node): kotlin.String
/*∆*/ }