Rocky_Mountain_Vending/.pnpm-store/v10/files/97/eb43087b9312ba6ad0189a4c5f6a8d9008f8fbf41bda49c5f8b0e5cac0cd0aa5815bb818a8fcdf15c57f9184a949e0c43cbe671cb3de0091561373abf9812e
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

39 lines
No EOL
1.4 KiB
Text

import type { SentrySpanArguments, Span, SpanAttributes, SpanAttributeValue, SpanContextData, SpanTimeInput } from '../types-hoist/span';
import type { SpanStatus } from '../types-hoist/spanStatus';
/**
* A Sentry Span that is non-recording, meaning it will not be sent to Sentry.
*/
export declare class SentryNonRecordingSpan implements Span {
private _traceId;
private _spanId;
constructor(spanContext?: SentrySpanArguments);
/** @inheritdoc */
spanContext(): SpanContextData;
/** @inheritdoc */
end(_timestamp?: SpanTimeInput): void;
/** @inheritdoc */
setAttribute(_key: string, _value: SpanAttributeValue | undefined): this;
/** @inheritdoc */
setAttributes(_values: SpanAttributes): this;
/** @inheritdoc */
setStatus(_status: SpanStatus): this;
/** @inheritdoc */
updateName(_name: string): this;
/** @inheritdoc */
isRecording(): boolean;
/** @inheritdoc */
addEvent(_name: string, _attributesOrStartTime?: SpanAttributes | SpanTimeInput, _startTime?: SpanTimeInput): this;
/** @inheritDoc */
addLink(_link: unknown): this;
/** @inheritDoc */
addLinks(_links: unknown[]): this;
/**
* This should generally not be used,
* but we need it for being compliant with the OTEL Span interface.
*
* @hidden
* @internal
*/
recordException(_exception: unknown, _time?: number | undefined): void;
}
//# sourceMappingURL=sentryNonRecordingSpan.d.ts.map