13 lines
293 B
TypeScript
13 lines
293 B
TypeScript
|
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
|
||
|
}
|