MimeTypeArray

JS
1.1
abstract class MimeTypeArray : ItemArrayLike<MimeType>

Exposes the JavaScript MimeTypeArray to Kotlin

Constructors

JS
1.1

<init>

Exposes the JavaScript MimeTypeArray to Kotlin

MimeTypeArray()

Functions

JS
1.1

item

open fun item(index: Int): MimeType?
JS
1.1

namedItem

fun namedItem(name: String): MimeType?

Extension Functions

JS
1.1

asList

Returns the view of this ItemArrayLike<T> collection as List<T>

fun <T> ItemArrayLike<T>.asList(): List<T>
JS
1.1

get

operator fun MimeTypeArray.get(index: Int): MimeType?
operator fun MimeTypeArray.get(name: String): MimeType?