Skip to content

Commit

Permalink
fix: docs for ItemGetTypeResponse (#507)
Browse files Browse the repository at this point in the history
  • Loading branch information
rishtigupta authored May 15, 2023
1 parent 54c29fa commit 9eac48f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1138,10 +1138,10 @@ export abstract class AbstractCacheClient implements ICacheClient {
* Return the type of the key in the cache
* @param {string} cacheName - The cache containing the key.
* @param {string} key - The key for which type is requested.
* @returns {Promise<ItemType.Response>}
* {@link ItemType.Hit} containing type of key when found.
* {@link ItemType.Miss} when the key does not exist.
* {@link ItemType.Error} on failure.
* @returns {Promise<ItemGetType.Response>}
* {@link ItemGetType.Hit} containing type of key when found.
* {@link ItemGetType.Miss} when the key does not exist.
* {@link ItemGetType.Error} on failure.
*/
public async itemGetType(
cacheName: string,
Expand Down

0 comments on commit 9eac48f

Please sign in to comment.