Rocky_Mountain_Vending/.pnpm-store/v10/files/dc/e66a1116086167b27c672362ae4bec00a83391c15d26d6fa1db28afae314710813e750aa9f38e9858fc9a29b6039e21eb9b16e6ad3b28802051ec101a7112a
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

26 lines
944 B
Text

import { InstrumentationBase } from '@opentelemetry/instrumentation';
import { InstrumentationConfig } from '@opentelemetry/instrumentation';
import { InstrumentationNodeModuleDefinition } from '@opentelemetry/instrumentation';
import { registerInstrumentations } from '@opentelemetry/instrumentation';
import { TracerProvider } from '@opentelemetry/api';
declare type Config = PrismaInstrumentationConfig & InstrumentationConfig;
export declare class PrismaInstrumentation extends InstrumentationBase {
private tracerProvider;
constructor(config?: Config);
setTracerProvider(tracerProvider: TracerProvider): void;
init(): InstrumentationNodeModuleDefinition[];
enable(): void;
disable(): void;
isEnabled(): boolean;
}
declare interface PrismaInstrumentationConfig {
middleware?: boolean;
ignoreSpanTypes?: (string | RegExp)[];
}
export { registerInstrumentations }
export { }