[JS] Revert paramter names changed by dukat

This commit is contained in:
Svyatoslav Kuzmich
2021-02-03 19:03:31 +03:00
parent f1682cba13
commit d3b4df7da8
@@ -4968,7 +4968,7 @@ public external open class Document : Node, GlobalEventHandlers, DocumentAndElem
fun adoptNode(node: Node): Node
fun createAttribute(localName: String): Attr
fun createAttributeNS(namespace: String?, qualifiedName: String): Attr
fun createEvent(param_interface: String): Event
fun createEvent(`interface`: String): Event
fun createRange(): Range
fun createNodeIterator(root: Node, whatToShow: Int = definedExternally, filter: NodeFilter? = definedExternally): NodeIterator
fun createNodeIterator(root: Node, whatToShow: Int = definedExternally, filter: ((Node) -> Short)? = definedExternally): NodeIterator
@@ -5066,9 +5066,9 @@ public external interface ElementCreationOptions {
@Suppress("INVISIBLE_REFERENCE", "INVISIBLE_MEMBER")
@kotlin.internal.InlineOnly
public inline fun ElementCreationOptions(param_is: String? = undefined): ElementCreationOptions {
public inline fun ElementCreationOptions(`is`: String? = undefined): ElementCreationOptions {
val o = js("({})")
o["is"] = param_is
o["is"] = `is`
return o
}