diff --git a/src/HttpClient/middlewares/cache.ts b/src/HttpClient/middlewares/cache.ts index 30a34b78..93771649 100644 --- a/src/HttpClient/middlewares/cache.ts +++ b/src/HttpClient/middlewares/cache.ts @@ -82,7 +82,7 @@ const CacheTypeNames = { interface CacheOptions { type: CacheType storage: CacheLayer - asyncSet?: Boolean + asyncSet?: boolean } export const cacheMiddleware = ({ type, storage, asyncSet }: CacheOptions) => {