扫描修改为后台扫描,openlist登录增加账号密码
This commit is contained in:
Vendored
+30
@@ -0,0 +1,30 @@
|
||||
declare module 'parse-torrent-name' {
|
||||
interface ParsedTorrent {
|
||||
title?: string;
|
||||
season?: number;
|
||||
episode?: number;
|
||||
year?: number;
|
||||
resolution?: string;
|
||||
codec?: string;
|
||||
audio?: string;
|
||||
group?: string;
|
||||
region?: string;
|
||||
extended?: boolean;
|
||||
hardcoded?: boolean;
|
||||
proper?: boolean;
|
||||
repack?: boolean;
|
||||
container?: string;
|
||||
widescreen?: boolean;
|
||||
website?: string;
|
||||
language?: string;
|
||||
sbs?: string;
|
||||
unrated?: boolean;
|
||||
size?: string;
|
||||
bitDepth?: string;
|
||||
hdr?: boolean;
|
||||
[key: string]: unknown;
|
||||
}
|
||||
|
||||
function parseTorrentName(name: string): ParsedTorrent;
|
||||
export default parseTorrentName;
|
||||
}
|
||||
Reference in New Issue
Block a user