Files
klz-cables.com/.pnpm-store/v10/files/92/072c1abdec1e865331d70984b2688def5009cc818ec992e96995a8bf95f45406a8a09717cdb62769056d61f248479e2736118f9ca61ade4793b2ac69e938c0
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

10 lines
733 B
Plaintext

import { InstrumentationModuleDefinition, InstrumentationModuleFile } from './types';
export declare class InstrumentationNodeModuleDefinition implements InstrumentationModuleDefinition {
name: string;
supportedVersions: string[];
patch?: ((exports: any, moduleVersion?: string) => any) | undefined;
unpatch?: ((exports: any, moduleVersion?: string) => void) | undefined;
files: InstrumentationModuleFile[];
constructor(name: string, supportedVersions: string[], patch?: ((exports: any, moduleVersion?: string) => any) | undefined, unpatch?: ((exports: any, moduleVersion?: string) => void) | undefined, files?: InstrumentationModuleFile[]);
}
//# sourceMappingURL=instrumentationNodeModuleDefinition.d.ts.map