diff options
Diffstat (limited to 'client/src/standalone/player/definitions.ts')
-rw-r--r-- | client/src/standalone/player/definitions.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/client/src/standalone/player/definitions.ts b/client/src/standalone/player/definitions.ts index 9fe903260..cc5203ed5 100644 --- a/client/src/standalone/player/definitions.ts +++ b/client/src/standalone/player/definitions.ts | |||
@@ -16,3 +16,10 @@ export interface PeerTubeResolution { | |||
16 | src?: string | 16 | src?: string |
17 | width?: number | 17 | width?: number |
18 | } | 18 | } |
19 | |||
20 | export type PeerTubeTextTrack = { | ||
21 | id: string | ||
22 | label: string | ||
23 | src: string | ||
24 | mode: 'showing' | 'disabled' | ||
25 | } | ||