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>
11 lines
No EOL
474 B
Text
11 lines
No EOL
474 B
Text
import type { TransactionEvent } from '../types-hoist/event';
|
|
import type { SpanJSON } from '../types-hoist/span';
|
|
/**
|
|
* Converts a transaction event to a span JSON object.
|
|
*/
|
|
export declare function convertTransactionEventToSpanJson(event: TransactionEvent): SpanJSON;
|
|
/**
|
|
* Converts a span JSON object to a transaction event.
|
|
*/
|
|
export declare function convertSpanJsonToTransactionEvent(span: SpanJSON): TransactionEvent;
|
|
//# sourceMappingURL=transactionEvent.d.ts.map |