]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/standalone/player/definitions.ts
Translated using Weblate (Polish)
[github/Chocobozzz/PeerTube.git] / client / src / standalone / player / definitions.ts
CommitLineData
c4710631 1export type EventHandler<T> = (ev: T) => void
99941732 2
902aa3a0
C
3export type PlayerEventType =
4 'pause' | 'play' |
5 'playbackStatusUpdate' |
6 'playbackStatusChange' |
7 'resolutionUpdate'
99941732
WL
8
9export interface PeerTubeResolution {
902aa3a0
C
10 id: any
11 label: string
12 src: string
13 active: boolean
14}