Rocky_Mountain_Vending/.pnpm-store/v10/files/5e/a1713b83d2cfdcee2bae3ca1be2799732c6fd6e68fabd2ccb3224c2c7ab180ad371e8ae668c4733e80fc17615ea7caa619fbfa7ead305f4c5a1cdba854ee69
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

15 lines
No EOL
1.2 KiB
Text

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