Rocky_Mountain_Vending/.pnpm-store/v10/files/6a/03c4f3ade94043c0aa57ea1142649c42fef89afbe971669da8ce70ec23d6f6a74e5e32c03a5b27930820853bcb387e14e92c78121ff15fa3649c0c87e97755
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

27 lines
No EOL
767 B
Text

import type { Context } from '@opentelemetry/api';
import type { ReadableSpan, Span, SpanProcessor as SpanProcessorInterface } from '@opentelemetry/sdk-trace-base';
/**
* Converts OpenTelemetry Spans to Sentry Spans and sends them to Sentry via
* the Sentry SDK.
*/
export declare class SentrySpanProcessor implements SpanProcessorInterface {
private _exporter;
constructor(options?: {
timeout?: number;
});
/**
* @inheritDoc
*/
forceFlush(): Promise<void>;
/**
* @inheritDoc
*/
shutdown(): Promise<void>;
/**
* @inheritDoc
*/
onStart(span: Span, parentContext: Context): void;
/** @inheritDoc */
onEnd(span: Span & ReadableSpan): void;
}
//# sourceMappingURL=spanProcessor.d.ts.map