Files
klz-cables.com/.pnpm-store/v10/files/34/f0484080d80f0f66fd733053e1eb5389ad7016d6e446fd9ceb596b134749671bc32476d8bc482d27238d31df2015ad628af5f9c307ae16d4558c7f03261ce4
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

14 lines
622 B
Plaintext

/**
* Replaces constructor functions in module exports, handling read-only properties,
* and both default and named exports by wrapping them with the constructor.
*
* @param exports The module exports object to modify
* @param exportName The name of the export to replace (e.g., 'GoogleGenAI', 'Anthropic', 'OpenAI')
* @param wrappedConstructor The wrapped constructor function to replace the original with
* @returns void
*/
export declare function replaceExports(exports: {
[key: string]: unknown;
}, exportName: string, wrappedConstructor: unknown): void;
//# sourceMappingURL=exports.d.ts.map