]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/video-file.model.ts
Share playlists state
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-file.model.ts
CommitLineData
d7a25329
C
1import { VideoConstant, VideoResolution } from '@shared/models'
2
3export interface VideoFile {
4 magnetUri: string
5 resolution: VideoConstant<VideoResolution>
6 size: number // Bytes
7 torrentUrl: string
8 torrentDownloadUrl: string
9 fileUrl: string
10 fileDownloadUrl: string
11 fps: number
12}