Project Files
src / tools / docs / filePreviewCache.ts
// tools/filePreviewCache.ts
const previewCache = new Map<string, string>();
export function getCachedPreview(fileKey: string): string | undefined {
return previewCache.get(fileKey);
}
export function setCachedPreview(fileKey: string, preview: string): void {
previewCache.set(fileKey, preview);
}