blob: 04da0627ecb850105261e36a68698a59048258e5 (
plain) (
tree)
|
|
import { VideoConstant, VideoResolution } from '@shared/models'
export interface VideoFile {
magnetUri: string
resolution: VideoConstant<VideoResolution>
size: number // Bytes
torrentUrl: string
torrentDownloadUrl: string
fileUrl: string
fileDownloadUrl: string
fps: number
}
|