Files
klz-cables.com/.pnpm-store/v10/files/71/47c2e37ce8c9c26cc018478a8e4936ce06d58486b811cf0a334071136d05613ba8dd932b47412f6d18aa6f1e5a6f78d181ba5edcfb470e87ef341ca1483908
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

22 lines
612 B
Plaintext

import type { ExtractorMessage } from '../types.js';
type StrictExtractedMessage = ExtractorMessage & {
references: NonNullable<ExtractorMessage['references']>;
};
export default class MessageExtractor {
private isDevelopment;
private projectRoot;
private sourceMap;
private compileCache;
constructor(opts: {
isDevelopment?: boolean;
projectRoot?: string;
sourceMap?: boolean;
});
extract(absoluteFilePath: string, source: string): Promise<{
messages: Array<StrictExtractedMessage>;
code: string;
map?: string;
}>;
}
export {};