Skip to content

Commit

Permalink
fix(common) change CacheStore.get return type
Browse files Browse the repository at this point in the history
  • Loading branch information
anchan828 committed Sep 11, 2019
1 parent af88637 commit edc7bd0
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -21,7 +21,7 @@ export interface CacheStore {
* *
* @param key cache key * @param key cache key
*/ */
get<T>(key: string): Promise<void> | void; get<T>(key: string): Promise<T | undefined> | T | undefined;
/** /**
* Destroy a key/value pair from the cache. * Destroy a key/value pair from the cache.
* *
Expand Down

0 comments on commit edc7bd0

Please sign in to comment.