UNPKG
@toast-ui/editor
Version:
latest (3.2.2)
3.2.2
3.2.1
3.2.0
3.1.10
3.1.9
3.1.8
3.1.7
3.1.6
3.1.5
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.3
3.0.2
3.0.1
3.0.0
3.0.0-alpha.1
3.0.0-alpha.0
2.5.4
2.5.3
2.5.2
2.5.1
2.5.0
2.4.0
2.3.1
2.3.1-alpha
2.3.0
2.2.0
2.2.0-alpha.0
2.1.2
2.1.1
2.1.0
2.1.0-alpha.3
2.1.0-alpha.2
2.1.0-alpha.1
2.1.0-alpha.0
2.0.1
2.0.0
2.0.0-alpha
GFM Markdown Wysiwyg Editor - Productive and Extensible
ui.toast.com
nhn/tui.editor
@toast-ui/editor
/
types
/
map.d.ts
9 lines
(8 loc)
•
256 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
interface
Mapable
<
K
,
V
>
{
clear
():
void
;
delete
(
key
: K):
boolean
;
forEach
(
callbackfn
: (
value
: V,
key
: K,
map
: Mapable<K, V>) =>
void
, thisArg?: any):
void
;
get
(
key
: K): V | undefined;
has
(
key
: K):
boolean
;
set
(
key
: K,
value
: V): this; }