Files
klz-cables.com/.pnpm-store/v10/files/8c/a727aaa1520e745fe4d9888d4283bc3170798f51f57f3144cf4e30b3d4188fd195d3e25c52ea7fc271c734f346024769f92b25b8dbd27b869fa2e8da447fca
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

13 lines
608 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