UNPKG

707 BTypeScriptView Raw
1import type { Event } from './event';
2/**
3 * NOTE: These types are still considered Beta and subject to change.
4 * @hidden
5 */
6export interface ReplayEvent extends Event {
7 urls: string[];
8 replay_start_timestamp?: number;
9 error_ids: string[];
10 trace_ids: string[];
11 replay_id: string;
12 segment_id: number;
13 replay_type: ReplayRecordingMode;
14}
15/**
16 * NOTE: These types are still considered Beta and subject to change.
17 * @hidden
18 */
19export declare type ReplayRecordingData = string | Uint8Array;
20/**
21 * NOTE: These types are still considered Beta and subject to change.
22 * @hidden
23 */
24export declare type ReplayRecordingMode = 'session' | 'buffer';
25//# sourceMappingURL=replay.d.ts.map
\No newline at end of file