Files
klz-cables.com/.pnpm-store/v10/files/e7/dcc733e113b0b605ffd3dfacfb74448a0712378a849c2043ffeec8fc08aa84c13802313d3e0d7e252f82d65d2f51054dfc2acbdb1082d4fe7c45bc37134c13
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

10 lines
613 B
Plaintext

import type { ErrorEvent, Event, FeedbackEvent, ReplayEvent, TransactionEvent } from '@sentry/core';
/** If the event is an error event */
export declare function isErrorEvent(event: Event): event is ErrorEvent;
/** If the event is a transaction event */
export declare function isTransactionEvent(event: Event): event is TransactionEvent;
/** If the event is an replay event */
export declare function isReplayEvent(event: Event): event is ReplayEvent;
/** If the event is a feedback event */
export declare function isFeedbackEvent(event: Event): event is FeedbackEvent;
//# sourceMappingURL=eventUtils.d.ts.map