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>
17 lines
No EOL
672 B
Text
17 lines
No EOL
672 B
Text
import { Context } from '@opentelemetry/api';
|
|
import { ReadableSpan } from './export/ReadableSpan';
|
|
import { Span } from './Span';
|
|
import { SpanProcessor } from './SpanProcessor';
|
|
/**
|
|
* Implementation of the {@link SpanProcessor} that simply forwards all
|
|
* received events to a list of {@link SpanProcessor}s.
|
|
*/
|
|
export declare class MultiSpanProcessor implements SpanProcessor {
|
|
private readonly _spanProcessors;
|
|
constructor(_spanProcessors: SpanProcessor[]);
|
|
forceFlush(): Promise<void>;
|
|
onStart(span: Span, context: Context): void;
|
|
onEnd(span: ReadableSpan): void;
|
|
shutdown(): Promise<void>;
|
|
}
|
|
//# sourceMappingURL=MultiSpanProcessor.d.ts.map |