1
0
Fork 0
peertube/shared/models/videos/video-streaming-playlist.mo...

16 lines
322 B
TypeScript
Raw Normal View History

2019-01-29 07:37:25 +00:00
import { VideoStreamingPlaylistType } from './video-streaming-playlist.type'
2021-11-18 13:35:08 +00:00
import { VideoFile } from './file'
2019-01-29 07:37:25 +00:00
2020-08-27 08:08:54 +00:00
export interface VideoStreamingPlaylist {
2019-01-29 07:37:25 +00:00
id: number
type: VideoStreamingPlaylistType
playlistUrl: string
segmentsSha256Url: string
redundancies: {
baseUrl: string
}[]
files: VideoFile[]
2019-01-29 07:37:25 +00:00
}