-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsession-replay.d.ts
More file actions
43 lines (43 loc) · 2.09 KB
/
Copy pathsession-replay.d.ts
File metadata and controls
43 lines (43 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import type { IncrementalSource as BrowserIncrementalSource, RecordType as BrowserRecordType } from './session-replay-browser';
import type { IncrementalSource as MobileIncrementalSource, RecordType as MobileRecordType } from './session-replay-mobile';
export * from '../generated/sessionReplay';
export { BrowserSource, ChangeType as BrowserChangeType, NodeType, IncrementalSource as BrowserIncrementalSource, MouseInteractionType, MediaInteractionType, PlaybackState, SnapshotFormat, } from './session-replay-browser';
export { CompositeOperation, IncrementalSource as MobileIncrementalSource, MobileSource, WireframeType, } from './session-replay-mobile';
export declare const RecordType: {
BrowserFullSnapshot: typeof BrowserRecordType.FullSnapshot;
BrowserIncrementalSnapshot: typeof BrowserRecordType.IncrementalSnapshot;
Meta: typeof BrowserRecordType.Meta;
Focus: typeof BrowserRecordType.Focus;
ViewEnd: typeof BrowserRecordType.ViewEnd;
VisualViewport: typeof BrowserRecordType.VisualViewport;
FrustrationRecord: typeof BrowserRecordType.FrustrationRecord;
MobileFullSnapshot: typeof MobileRecordType.FullSnapshot;
MobileIncrementalSnapshot: typeof MobileRecordType.IncrementalSnapshot;
BrowserChange: typeof BrowserRecordType.Change;
};
export type RecordType = (typeof RecordType)[keyof typeof RecordType];
export type IncrementalSource = BrowserIncrementalSource | MobileIncrementalSource;
export declare const PointerEventType: {
readonly PointerDown: "down";
readonly PointerUp: "up";
readonly PointerMove: "move";
};
export type PointerEventType = (typeof PointerEventType)[keyof typeof PointerEventType];
export declare const PointerType: {
readonly Mouse: "mouse";
readonly Touch: "touch";
readonly Pen: "pen";
};
export type PointerType = (typeof PointerType)[keyof typeof PointerType];
export type NodeId = number & {
__brand: 'NodeId';
};
export type StringId = number & {
__brand: 'StringId';
};
export type StringNamespaceId = number & {
__brand: 'StringNamespaceId';
};
export type StyleSheetId = number & {
__brand: 'StyleSheetId';
};