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