toggle menu
Kotlin Wrappers API Reference
js
switch theme
search in API
kotlin-browser
/
web.highlight
/
HighlightRegistry
Highlight
Registry
sealed
external
class
HighlightRegistry
:
MutableMapLike
<
String
,
Highlight
>
(
source
)
MDN Reference
Members
Properties
size
Link copied to clipboard
abstract
override
val
size
:
Int
Functions
clear
Link copied to clipboard
abstract
fun
clear
(
)
delete
Link copied to clipboard
abstract
fun
delete
(
key
:
String
)
:
Boolean
entries
Link copied to clipboard
abstract
fun
entries
(
)
:
JsIterator
<
JsTuple2
<
String
,
Highlight
>
>
for
Each
Link copied to clipboard
abstract
fun
forEach
(
action
:
(
value
:
Highlight
,
key
:
String
)
->
Unit
)
get
Link copied to clipboard
abstract
operator
fun
get
(
key
:
String
)
:
Highlight
?
open
operator
fun
get
(
key
:
Symbol.iterator
)
:
(
)
->
JsIterator
<
JsTuple2
<
String
,
Highlight
>
>
has
Link copied to clipboard
abstract
override
fun
has
(
key
:
String
)
:
Boolean
iterator
Link copied to clipboard
open
inline operator
fun
iterator
(
)
:
Iterator
<
JsTuple2
<
String
,
Highlight
>
>
keys
Link copied to clipboard
abstract
fun
keys
(
)
:
JsIterator
<
String
>
set
Link copied to clipboard
abstract
operator
fun
set
(
key
:
String
,
value
:
Highlight
)
values
Link copied to clipboard
abstract
fun
values
(
)
:
JsIterator
<
Highlight
>