PeerTube/packages/models/src/videos/video-streaming-playlist.mo...

16 lines
344 B
TypeScript
Raw Normal View History

import { VideoFile } from './file/index.js'
import { VideoStreamingPlaylistType_Type } from './video-streaming-playlist.type.js'
2019-01-29 08:37:25 +01:00
2020-08-27 10:08:54 +02:00
export interface VideoStreamingPlaylist {
2019-01-29 08:37:25 +01:00
id: number
type: VideoStreamingPlaylistType_Type
2019-01-29 08:37:25 +01:00
playlistUrl: string
segmentsSha256Url: string
redundancies: {
baseUrl: string
}[]
files: VideoFile[]
2019-01-29 08:37:25 +01:00
}