X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Fvideos%2Fvideo-streaming-playlist.model.ts;h=11919a4eec794b8a545d0d463a965e3c391a06e9;hb=ab4b8974997777373a6032073f9c1aaf33ba9931;hp=17f8fe865cc680d2cf2d4c8060a416b4f5fab41b;hpb=b718fd22374d64534bcfe69932cf562894abed6a;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/videos/video-streaming-playlist.model.ts b/shared/models/videos/video-streaming-playlist.model.ts index 17f8fe865..11919a4ee 100644 --- a/shared/models/videos/video-streaming-playlist.model.ts +++ b/shared/models/videos/video-streaming-playlist.model.ts @@ -1,6 +1,7 @@ import { VideoStreamingPlaylistType } from './video-streaming-playlist.type' +import { VideoFile } from './file' -export class VideoStreamingPlaylist { +export interface VideoStreamingPlaylist { id: number type: VideoStreamingPlaylistType playlistUrl: string @@ -9,4 +10,6 @@ export class VideoStreamingPlaylist { redundancies: { baseUrl: string }[] + + files: VideoFile[] }