Rocky_Mountain_Vending/.pnpm-store/v10/files/a5/635a5e0fb615e458d8a934c30dec119ec96bab071f5c837f976e25ff882037546497eba0ba6fd6e626a97a6144458cb48413809d5b1aea6d7b9410d382b345
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

17 lines
No EOL
668 B
Text

import type { ReadableSpan } from '@opentelemetry/sdk-trace-base';
export interface SpanNode {
id: string;
span?: ReadableSpan;
parentNode?: SpanNode | undefined;
children: SpanNode[];
}
/**
* This function runs through a list of OTEL Spans, and wraps them in an `SpanNode`
* where each node holds a reference to their parent node.
*/
export declare function groupSpansWithParents(spans: ReadableSpan[]): SpanNode[];
/**
* This returns the _local_ parent ID - `parentId` on the span may point to a remote span.
*/
export declare function getLocalParentId(span: ReadableSpan): string | undefined;
//# sourceMappingURL=groupSpansWithParents.d.ts.map