Files
klz-cables.com/.pnpm-store/v10/files/35/c1489355df7b2859ab2f60bf1a1f25196c70c674d674b94a0135f1ef684af8709322b54eb19cfc424359a68908e54747aead0b67979277589fa3a8a23e2c3e
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

40 lines
1.5 KiB
Plaintext

import { SentrySpanArguments, Span, SpanAttributes, SpanAttributeValue, SpanContextData, SpanTimeInput } from '../types-hoist/span';
import { 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