-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathtypes.d.ts
More file actions
41 lines (40 loc) · 758 Bytes
/
Copy pathtypes.d.ts
File metadata and controls
41 lines (40 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
export interface Tosho {
title?: string
timestamp: number
torrent_url: string
torrent_name: string
info_hash: string
magnet_uri: string
seeders: null
leechers: null
torrent_downloaded_count?: number
total_size: number
num_files: number
torrent_url?: string
article_url?: string
website_url?: string
nyaa_id?: string
anidb_aid?: number
anidb_eid?: number
anidb_fid?: number
nzb_url?: string
}
export interface Seadex {
items: {
alID: number
expand: {
trs: {
created: Date
dualAudio: boolean
files: {
length: number
name: string
}[]
infoHash: string
isBest: boolean
releaseGroup: string
}[]
}
trs: string[]
}[]
}