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>
25 lines
No EOL
910 B
Text
25 lines
No EOL
910 B
Text
import { SpanExporter } from './SpanExporter';
|
|
import { ReadableSpan } from './ReadableSpan';
|
|
import { ExportResult } from '@opentelemetry/core';
|
|
/**
|
|
* This class can be used for testing purposes. It stores the exported spans
|
|
* in a list in memory that can be retrieved using the `getFinishedSpans()`
|
|
* method.
|
|
*/
|
|
export declare class InMemorySpanExporter implements SpanExporter {
|
|
private _finishedSpans;
|
|
/**
|
|
* Indicates if the exporter has been "shutdown."
|
|
* When false, exported spans will not be stored in-memory.
|
|
*/
|
|
protected _stopped: boolean;
|
|
export(spans: ReadableSpan[], resultCallback: (result: ExportResult) => void): void;
|
|
shutdown(): Promise<void>;
|
|
/**
|
|
* Exports any pending spans in the exporter
|
|
*/
|
|
forceFlush(): Promise<void>;
|
|
reset(): void;
|
|
getFinishedSpans(): ReadableSpan[];
|
|
}
|
|
//# sourceMappingURL=InMemorySpanExporter.d.ts.map |