minor fix

This commit is contained in:
Stepan Mikhaylyuk
2015-08-19 19:46:47 +03:00
parent b316f99df4
commit 35afc7dc2c
+2 -1
View File
@@ -36,12 +36,13 @@ interface LSCache {
* Appends CACHE_PREFIX so lscache will partition data in to different buckets.
* @param {string} bucket
*/
setBucket(bucket: string);
setBucket(bucket: string):void;
/**
* Resets the string being appended to CACHE_PREFIX so lscache will use the default storage behavior.
*/
resetBucket(): void;
}
declare var lscache:LSCache;
declare module 'lscache' {
var lscache: LSCache;
export = lscache;