Files
klz-cables.com/.pnpm-store/v10/files/73/86a5f3b004dfa9278a2d775bee415df529c3e7ba05da14655e2e77538dd98e70e8cca82cf029dcc8d180997f8c6074e1f7ca7e95611463b79f6e3701d444ef
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

12 lines
541 B
Plaintext

import type { KVAdapter, KVAdapterResult, KVStoreValue } from '../index.js';
export declare class InMemoryKVAdapter implements KVAdapter {
store: Map<string, {}>;
clear(): Promise<void>;
delete(key: string): Promise<void>;
get<T extends KVStoreValue>(key: string): Promise<null | T>;
has(key: string): Promise<boolean>;
keys(): Promise<string[]>;
set(key: string, value: KVStoreValue): Promise<void>;
}
export declare const inMemoryKVAdapter: () => KVAdapterResult;
//# sourceMappingURL=InMemoryKVAdapter.d.ts.map