UNPKG

mmdb-lib

Version:

Maxmind DB (MMDB) Library

8 lines (7 loc) 165 B
export interface Cache { get(key: string | number): any; set(key: string | number, value: any): any; } export interface ReaderOptions { cache?: Cache; }