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;
};
}
interface NormalizationCacheResult {
    caches: Record<string, Record<string, string>>;
    deltas?: {
        [algorithm: string]: {
            added: Record<string, string>;
            modified: Record<string, string>;
        };
    };
    timing: { processingTimeMs: number; totalTitlesProcessed: number };
}

Properties

Properties

caches: Record<string, Record<string, string>>
deltas?: {
    [algorithm: string]: {
        added: Record<string, string>;
        modified: Record<string, string>;
    };
}
timing: { processingTimeMs: number; totalTitlesProcessed: number }