Kotlin Wrappers API Reference
Toggle table of contents
common
Target filter
common
Switch theme
Search in API
kotlin-browser
/
web.keyboard
/
KeyboardLayoutMap
Keyboard
Layout
Map
sealed
class
KeyboardLayoutMap
:
ReadonlyMap
<
KeyCode
,
JsString
>
(
source
)
MDN Reference
Members
Properties
size
Link copied to clipboard
abstract
override
val
size
:
Int
Functions
entries
Link copied to clipboard
abstract
fun
entries
(
)
:
JsIterator
<
Tuple2
<
KeyCode
,
JsString
>
>
for
Each
Link copied to clipboard
abstract
fun
forEach
(
action
:
(
value
:
JsString
,
key
:
KeyCode
)
->
Unit
)
get
Link copied to clipboard
abstract
fun
get
(
key
:
KeyCode
)
:
JsString
?
open
operator
fun
get
(
key
:
Symbol.iterator
)
:
(
)
->
JsIterator
<
Tuple2
<
KeyCode
,
JsString
>
>
has
Link copied to clipboard
abstract
override
fun
has
(
key
:
KeyCode
)
:
Boolean
keys
Link copied to clipboard
abstract
fun
keys
(
)
:
JsIterator
<
KeyCode
>
values
Link copied to clipboard
abstract
fun
values
(
)
:
JsIterator
<
JsString
>