From 5e0c2be6436e509c3e538c4c740a1a55ce8bf2ea Mon Sep 17 00:00:00 2001 From: Jared Wray Date: Tue, 10 Dec 2024 12:06:30 -0800 Subject: [PATCH] cacheable - removing KeyvCacheableMemory as replaced by createKeyv --- packages/cacheable/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cacheable/src/index.ts b/packages/cacheable/src/index.ts index 8a07d0ab..51a866eb 100644 --- a/packages/cacheable/src/index.ts +++ b/packages/cacheable/src/index.ts @@ -1,7 +1,7 @@ import {Keyv, type KeyvStoreAdapter} from 'keyv'; import {Hookified} from 'hookified'; import {shorthandToMilliseconds} from './shorthand-time.js'; -import {KeyvCacheableMemory, createKeyv} from './keyv-memory.js'; +import {createKeyv} from './keyv-memory.js'; import {CacheableStats} from './stats.js'; import {type CacheableItem} from './cacheable-item-types.js'; import {hash} from './hash.js';