* cleanup

* fix template
This commit is contained in:
Aria Moradi
2021-12-19 18:02:02 +03:30
committed by GitHub
parent 2a7b0692e2
commit 83f025161b
6 changed files with 9 additions and 9 deletions

4
src/typings.d.ts vendored
View File

@@ -219,7 +219,7 @@ interface PaginatedList<T> {
type NullAndUndefined<T> = T | null | undefined;
type SortMode = 'fetchedAt' | 'source';
type ChapterSortMode = 'fetchedAt' | 'source';
interface ChapterListOptions {
active: boolean
@@ -227,6 +227,6 @@ interface ChapterListOptions {
downloaded: NullAndUndefined<boolean>
bookmarked: NullAndUndefined<boolean>
reverse: boolean
sortBy: SortMode
sortBy: ChapterSortMode
showChapterNumber: boolean
}