mirror of
https://github.com/KevinMidboe/seasoned.git
synced 2026-05-14 18:15:41 +00:00
12 lines
224 B
TypeScript
12 lines
224 B
TypeScript
export default interface ITorrent {
|
|
name: string;
|
|
magnet: string;
|
|
uploader: string | null;
|
|
size: string;
|
|
date: string | Date;
|
|
seed: string;
|
|
leech: string;
|
|
url: string | null;
|
|
release_type: Array<string>;
|
|
}
|