aboutsummaryrefslogtreecommitdiff
path: root/types
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2019-02-17 21:45:55 -0500
committerDeterminant <ted.sybil@gmail.com>2019-02-17 21:45:55 -0500
commite285bc7722f776155b7ae4477bfa7f8c6601a22b (patch)
tree492ab0d880ebb78826b9cd253282664b2882b31c /types
parentea3cbbe3fab9ac6882d4d25c258cb175081c66d7 (diff)
support offline cache for calendar events
Diffstat (limited to 'types')
-rw-r--r--types/lru-cache/index.d.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/types/lru-cache/index.d.ts b/types/lru-cache/index.d.ts
index 1f1f2b7..8fece23 100644
--- a/types/lru-cache/index.d.ts
+++ b/types/lru-cache/index.d.ts
@@ -5,6 +5,8 @@ declare module 'lru-cache' {
has(key: K): boolean;
get(key: K): V;
set(key: K, val: V);
+ dump(): {k: K, v: V, e: number}[];
+ load(arr: {k: K, v: V, e: number}[]);
}
export = LRUCache;
}