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
727 B
Text
17 lines
No EOL
727 B
Text
import { Span } from './span';
|
|
import { SpanContext } from './span_context';
|
|
export declare function isValidTraceId(traceId: string): boolean;
|
|
export declare function isValidSpanId(spanId: string): boolean;
|
|
/**
|
|
* Returns true if this {@link SpanContext} is valid.
|
|
* @return true if this {@link SpanContext} is valid.
|
|
*/
|
|
export declare function isSpanContextValid(spanContext: SpanContext): boolean;
|
|
/**
|
|
* Wrap the given {@link SpanContext} in a new non-recording {@link Span}
|
|
*
|
|
* @param spanContext span context to be wrapped
|
|
* @returns a new non-recording {@link Span} with the provided context
|
|
*/
|
|
export declare function wrapSpanContext(spanContext: SpanContext): Span;
|
|
//# sourceMappingURL=spancontext-utils.d.ts.map |