blob: 7f9ef9b6f9807a315e430037d16a38291474b883 (
plain) (
tree)
|
|
export interface EventHandler<T> {
(ev: T): void
}
export type PlayerEventType =
'pause' | 'play' |
'playbackStatusUpdate' |
'playbackStatusChange' |
'resolutionUpdate'
export interface PeerTubeResolution {
id: any
label: string
src: string
active: boolean
}
|