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
11 lines
619 B
Plaintext
11 lines
619 B
Plaintext
import { 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
|