Files
klz-cables.com/.pnpm-store/v10/files/6b/ec53d84366d7826308c0ec6e16d714eb900f3c2bf243d92b8a931ab606c83abf36ecae937e8103624be9136bad876681e271d8e3280a5b14b951c6f176ce9d
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

16 lines
569 B
Plaintext

import type ExtractorCodec from './ExtractorCodec.js';
import type { MessagesFormat } from './types.js';
declare const formats: {
json: {
codec: () => Promise<typeof import("./codecs/JSONCodec.js")>;
extension: ".json";
};
po: {
codec: () => Promise<typeof import("./codecs/POCodec.js")>;
extension: ".po";
};
};
export default formats;
export declare function getFormatExtension(format: MessagesFormat): string;
export declare function resolveCodec(format: MessagesFormat, projectRoot: string): Promise<ExtractorCodec>;