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