UNPKG
mmdb-lib
Version:
latest (3.0.1)
3.0.1
3.0.0
2.2.1
2.2.0
2.1.1
2.1.0
2.0.2
2.0.1
2.0.0
1.4.0
1.3.1
1.3.0
1.2.0
1.1.0
1.0.0
Maxmind DB (MMDB) Library
github.com/runk/mmdb-lib
runk/mmdb-lib
mmdb-lib
/
lib
/
types.d.ts
8 lines
(7 loc)
•
165 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
interface
Cache
{
get
(
key
:
string
|
number
):
any
;
set
(
key
:
string
|
number
,
value
:
any
):
any
; }
export
interface
ReaderOptions
{
cache
?:
Cache
; }