Files
klz-cables.com/.pnpm-store/v10/files/38/1181aecb5813c1030e9180e758c91d18270d798d01c40fa09840a19021f88caeb0b6f143d1c1373f7b93456ac0519584d4547345442e1e02eaa02cb9b8b9bf
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

25 lines
691 B
Plaintext

import type { 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