]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/video-streaming-playlist.model.ts
Merge branch 'release/4.2.0' into develop
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-streaming-playlist.model.ts
CommitLineData
09209296 1import { VideoStreamingPlaylistType } from './video-streaming-playlist.type'
ad5db104 2import { VideoFile } from './file'
09209296 3
b2c76204 4export interface VideoStreamingPlaylist {
09209296
C
5 id: number
6 type: VideoStreamingPlaylistType
7 playlistUrl: string
8 segmentsSha256Url: string
9
10 redundancies: {
11 baseUrl: string
12 }[]
d7a25329
C
13
14 files: VideoFile[]
09209296 15}