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
390 B
Plaintext
11 lines
390 B
Plaintext
import type { Client, ReplayEvent, Scope } from '@sentry/core';
|
|
/**
|
|
* Prepare a replay event & enrich it with the SDK metadata.
|
|
*/
|
|
export declare function prepareReplayEvent({ client, scope, replayId: event_id, event, }: {
|
|
client: Client;
|
|
scope: Scope;
|
|
replayId: string;
|
|
event: ReplayEvent;
|
|
}): Promise<ReplayEvent | null>;
|
|
//# sourceMappingURL=prepareReplayEvent.d.ts.map |