Add a way to select the resolution. Use 1080p by default

Fix #58
This commit is contained in:
Godzil
2018-03-29 22:29:01 +01:00
parent c78552795f
commit 547fdc4aa0
4 changed files with 48 additions and 4 deletions

View File

@@ -14,4 +14,7 @@ interface IConfig {
series?: string;
filename?: string;
tag?: string;
resolution?: string;
video_format?: string;
video_quality?: string;
}

4
src/interface/IResolData.d.ts vendored Normal file
View File

@@ -0,0 +1,4 @@
interface IResolData {
quality: string;
format: string;
}