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>
12 lines
No EOL
488 B
Text
12 lines
No EOL
488 B
Text
import { Context } from '@opentelemetry/api';
|
|
import { ReadableSpan } from './ReadableSpan';
|
|
import { Span } from '../Span';
|
|
import { SpanProcessor } from '../SpanProcessor';
|
|
/** No-op implementation of SpanProcessor */
|
|
export declare class NoopSpanProcessor implements SpanProcessor {
|
|
onStart(_span: Span, _context: Context): void;
|
|
onEnd(_span: ReadableSpan): void;
|
|
shutdown(): Promise<void>;
|
|
forceFlush(): Promise<void>;
|
|
}
|
|
//# sourceMappingURL=NoopSpanProcessor.d.ts.map |