Normalized title cache result produced by the worker.
export interface NormalizationCacheResult { caches: Record<string, Record<string, string>>; deltas?: { [algorithm: string]: { added: Record<string, string>; modified: Record<string, string>; }; }; timing: { processingTimeMs: number; totalTitlesProcessed: number; };} Copy
export interface NormalizationCacheResult { caches: Record<string, Record<string, string>>; deltas?: { [algorithm: string]: { added: Record<string, string>; modified: Record<string, string>; }; }; timing: { processingTimeMs: number; totalTitlesProcessed: number; };}
Optional
Normalized title cache result produced by the worker.
Source