15 lines
322 B
TypeScript
15 lines
322 B
TypeScript
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[]
|
|
}
|