blob: 32e32d9f1b959cb8c1330c64da21e9fa6fbade36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
export type { ConversationCache, ConversationCacheOptions } from "./cache";
export { createConversationCache } from "./cache";
export { nextSinceSeq, reconcileCache, selectEvictions } from "./logic";
export type {
ConversationCacheIndexEntry,
ConversationChunkStore,
ReconcileResult,
} from "./types";
/** Public module manifest — aggregated by the shell's "Loaded Modules" view. */
export const manifest = {
name: "conversation-cache",
description: "IndexedDB-backed chunk cache with reconciliation",
} as const;
|