Files
klz-cables.com/.pnpm-store/v10/files/aa/2402d9c3a121cf5e4c2d723ac19dab58a9319bfbf9928a611c9ad27b56bb695da86de4b9a7999b6b170705c875195e516715419dca9e988fe09e50d6299a7b
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

21 lines
692 B
Plaintext

import type ExtractorCodec from '../format/ExtractorCodec.js';
import type { ExtractorMessage, Locale } from '../types.js';
export default class CatalogPersister {
private messagesPath;
private codec;
private extension;
constructor(params: {
messagesPath: string;
codec: ExtractorCodec;
extension: string;
});
private getFileName;
private getFilePath;
read(locale: Locale): Promise<Array<ExtractorMessage>>;
write(messages: Array<ExtractorMessage>, context: {
locale: Locale;
sourceMessagesById: Map<string, ExtractorMessage>;
}): Promise<void>;
getLastModified(locale: Locale): Promise<Date | undefined>;
}