UNPKG
@zxr3680166/simple-mind-map
Version:
latest (0.9.1)
0.9.1
0.7.3-fix.2
0.7.1-fix.2
0.7.1-fix.1
0.7.0
一个简单的web在线思维导图
github.com/wanglin2/mind-map
wanglin2/mind-map
@zxr3680166/simple-mind-map
/
types
/
src
/
utils
/
Lru.d.ts
11 lines
(10 loc)
•
230 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
default
class
Lru
{
constructor
(
max
:
any
);
max
:
any
;
size
:
number
;
pool
:
Map
<
any
,
any
>;
add
(
key
:
any
,
value
:
any
):
void
;
delete
(
key
:
any
):
void
;
has
(
key
:
any
):
boolean
;
get
(
key
:
any
):
any
; }