Files
klz-cables.com/.pnpm-store/v10/files/3b/2d6531945524786e15ee94fea4942226c1a5fcbde633479e188599ff743e013441491aec23ef124cc0dfb988c5637e6f5fb29285fac1125ff78db5a5f4bbed
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

26 lines
712 B
Plaintext

import { Event } from './event';
/**
* NOTE: These types are still considered Beta and subject to change.
* @hidden
*/
export interface ReplayEvent extends Event {
urls: string[];
replay_start_timestamp?: number;
error_ids: string[];
trace_ids: string[];
replay_id: string;
segment_id: number;
replay_type: ReplayRecordingMode;
}
/**
* NOTE: These types are still considered Beta and subject to change.
* @hidden
*/
export type ReplayRecordingData = string | Uint8Array;
/**
* NOTE: These types are still considered Beta and subject to change.
* @hidden
*/
export type ReplayRecordingMode = 'session' | 'buffer';
//# sourceMappingURL=replay.d.ts.map