/**
|
|
* The movie search request structure
|
|
*/
|
|
export interface IMovieSearchInfo {
|
|
title : string,
|
|
altTitles : string[],
|
|
imdbId : string|null,
|
|
year : number|null,
|
|
torrentBlacklist: string[]
|
|
}
|
|
|
|
/**
|
|
* The generated torrent link structure
|
|
*/
|
|
export interface ITorrentLink {
|
|
link: string,
|
|
type: "magnet"|"file"
|
|
}
|