Files
kotlin-fork/libraries/stdlib/api/js/org.w3c.dom.kt
T
Ilya Goncharov 229fd73b38 [Gradle, JS] Regenerate API stdlib
This reverts commit b4c0cab22a.
2023-02-22 11:00:11 +00:00

7 lines
237 B
Kotlin

public fun <T> org.w3c.dom.ItemArrayLike<T>.asList(): kotlin.collections.List<T>
public external interface ItemArrayLike<out T> {
public abstract val length: kotlin.Int { get; }
public abstract fun item(index: kotlin.Int): T?
}