Files
klz-cables.com/.pnpm-store/v10/files/5e/a1713b83d2cfdcee2bae3ca1be2799732c6fd6e68fabd2ccb3224c2c7ab180ad371e8ae668c4733e80fc17615ea7caa619fbfa7ead305f4c5a1cdba854ee69
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

15 lines
1.2 KiB
Plaintext

import * as api from '@opentelemetry/api';
import { InstrumentationBase, InstrumentationNodeModuleDefinition } from '@opentelemetry/instrumentation';
import type { FMember, FPMember, CreateHook, EndHook, FsInstrumentationConfig } from './types';
export declare class FsInstrumentation extends InstrumentationBase<FsInstrumentationConfig> {
constructor(config?: FsInstrumentationConfig);
init(): (InstrumentationNodeModuleDefinition | InstrumentationNodeModuleDefinition)[];
protected _patchSyncFunction<T extends (...args: any[]) => ReturnType<T>>(functionName: FMember, original: T): T;
protected _patchCallbackFunction<T extends (...args: any[]) => ReturnType<T>>(functionName: FMember, original: T): T;
protected _patchExistsCallbackFunction<T extends (...args: any[]) => ReturnType<T>>(functionName: 'exists', original: T): T;
protected _patchPromiseFunction<T extends (...args: any[]) => ReturnType<T>>(functionName: FPMember, original: T): T;
protected _runCreateHook(...args: Parameters<CreateHook>): ReturnType<CreateHook>;
protected _runEndHook(...args: Parameters<EndHook>): ReturnType<EndHook>;
protected _shouldTrace(context: api.Context): boolean;
}
//# sourceMappingURL=instrumentation.d.ts.map