forked from snowplow/snowplow-javascript-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
173 lines (142 loc) · 3.61 KB
/
types.ts
File metadata and controls
173 lines (142 loc) · 3.61 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
import { SEARCH_ERROR } from './constants';
export interface TextTrack {
label: string;
language: string;
kind: string;
mode: string;
}
export interface TrackedElement {
timeoutId?: ReturnType<typeof setTimeout>;
waitTime: number;
retryCount: number;
tracking: boolean;
}
export interface SearchResult {
el?: HTMLAudioElement | HTMLVideoElement;
err?: SEARCH_ERROR;
}
export interface EventDetail {
boundary?: number;
}
interface TimeRange {
start: number;
end: number;
}
export interface MediaEntities {
schema: string;
data: MediaElement | VideoElement;
}
export interface VideoElement {
/**
* A boolean value that is true if the video should enter or leave picture-in-picture mode automatically when changing tab and/or application
**/
autoPictureInPicture?: boolean | null;
/**
* The disablePictureInPicture property will hint the user agent to not suggest the picture-in-picture to users or to request it automatically
**/
disablePictureInPicture?: boolean | null;
/**
* 'poster' HTML attribute, which specifies an image to show while no video data is available
**/
poster?: string | null;
/**
* A value indicating the intrinsic height of the resource in CSS pixels, or 0 if no media is available yet
**/
videoHeight: number;
/**
* A value indicating the intrinsic width of the resource in CSS pixels, or 0 if no media is available yet
**/
videoWidth: number;
[key: string]: unknown;
}
export interface MediaElement {
/**
* If playback should automatically begin as soon as enough media is available to do so without interruption
**/
autoPlay: boolean;
/**
* An array of time ranges that have been buffered
**/
buffered: TimeRange[];
/**
* If the user agent should provide it's own set of controls
**/
controls: boolean;
/**
* CORS settings value of the media player
**/
crossOrigin?: string | null;
/**
* The absolute URL of the media resource
**/
currentSrc: string;
/**
* If audio is muted by default
**/
defaultMuted: boolean;
/**
* The default media playback rate of the player
**/
defaultPlaybackRate: number;
/**
* If the media element is allowed to have a remote playback UI
**/
disableRemotePlayback?: boolean | null;
/**
* An object of the latest error to occur, or null if no errors
**/
error?: object | null;
/**
* The media file format
**/
fileExtension: string | null;
/**
* If the video element is fullscreen
**/
fullscreen?: boolean | null;
/**
* If the media is a video element, or audio
**/
mediaType: 'AUDIO' | 'VIDEO';
/**
* The current state of the fetching of media over the network
**/
networkState: 'NETWORK_EMPTY' | 'NETWORK_IDLE' | 'NETWORK_LOADING' | 'NETWORK_NO_SOURCE';
/**
* If the video element is showing Picture-In-Picture
**/
pictureInPicture?: boolean | null;
/**
* An array of time ranges played
**/
played?: TimeRange[];
/**
* The HTML id of the element
**/
htmlId: string;
/**
* The 'preload' HTML attribute of the media
**/
preload: string;
/**
* The readiness of the media
**/
readyState: 'HAVE_NOTHING' | 'HAVE_METADATA' | 'HAVE_CURRENT_DATA' | 'HAVE_FUTURE_DATA' | 'HAVE_ENOUGH_DATA';
/**
* Seekable time range(s)
**/
seekable: TimeRange[];
/**
* If the media is in the process of seeking to a new position
**/
seeking: boolean;
/**
* The 'src' HTML attribute of the media element
**/
src: string;
/**
* An array of TextTrack objects on the media element
**/
textTracks?: TextTrack[];
[key: string]: unknown;
}