From 9b250438beb6e455761358c9788768b4f759682b Mon Sep 17 00:00:00 2001 From: Oguzhan Ergin Date: Thu, 26 Feb 2015 15:52:44 +0200 Subject: [PATCH] Add keys method --- memory-cache/memory-cache.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/memory-cache/memory-cache.d.ts b/memory-cache/memory-cache.d.ts index 1eb9c61cf..ca3ffd738 100644 --- a/memory-cache/memory-cache.d.ts +++ b/memory-cache/memory-cache.d.ts @@ -17,4 +17,5 @@ declare module "memory-cache" { export function debug(bool: boolean): void; export function hits(): number; export function misses(): number; + export function keys() : any; }