aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/standalone/player/definitions.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-12-17 14:20:43 +0100
committerChocobozzz <me@florianbigard.com>2019-12-18 10:14:23 +0100
commit6377a9f2b0f762be9af61f46b4f0a9efd0c4b7c2 (patch)
treec632833f4275df8d75a6df55fe8673a7dec7c0ec /client/src/standalone/player/definitions.ts
parentc3b937916711136cb1ce974f769205439a3d2e04 (diff)
downloadPeerTube-6377a9f2b0f762be9af61f46b4f0a9efd0c4b7c2.tar.gz
PeerTube-6377a9f2b0f762be9af61f46b4f0a9efd0c4b7c2.tar.zst
PeerTube-6377a9f2b0f762be9af61f46b4f0a9efd0c4b7c2.zip
Fix test embed page
Diffstat (limited to 'client/src/standalone/player/definitions.ts')
-rw-r--r--client/src/standalone/player/definitions.ts8
1 files changed, 6 insertions, 2 deletions
diff --git a/client/src/standalone/player/definitions.ts b/client/src/standalone/player/definitions.ts
index afd10541b..9fe903260 100644
--- a/client/src/standalone/player/definitions.ts
+++ b/client/src/standalone/player/definitions.ts
@@ -4,11 +4,15 @@ export type PlayerEventType =
4 'pause' | 'play' | 4 'pause' | 'play' |
5 'playbackStatusUpdate' | 5 'playbackStatusUpdate' |
6 'playbackStatusChange' | 6 'playbackStatusChange' |
7 'resolutionUpdate' 7 'resolutionUpdate' |
8 'volumeChange'
8 9
9export interface PeerTubeResolution { 10export interface PeerTubeResolution {
10 id: any 11 id: any
11 label: string 12 label: string
12 src: string
13 active: boolean 13 active: boolean
14 height: number
15
16 src?: string
17 width?: number
14} 18}