blob: 11919a4eec794b8a545d0d463a965e3c391a06e9 (
plain) (
tree)
|
|
import { VideoStreamingPlaylistType } from './video-streaming-playlist.type'
import { VideoFile } from './file'
export interface VideoStreamingPlaylist {
id: number
type: VideoStreamingPlaylistType
playlistUrl: string
segmentsSha256Url: string
redundancies: {
baseUrl: string
}[]
files: VideoFile[]
}
|