Feature/batch chapter actions (#194)

* Add batch delete chapters

* Add remaining batch actions
This commit is contained in:
Valter Martinek
2022-11-21 01:33:21 +01:00
committed by GitHub
parent 1510c5a093
commit 68f67273aa
5 changed files with 180 additions and 37 deletions

7
src/typings.d.ts vendored
View File

@@ -289,3 +289,10 @@ interface LibraryOptions {
sorts: NullAndUndefined<string>
sortDesc: NullAndUndefined<boolean>
}
interface BatchChaptersChange {
delete?: boolean
isRead?: boolean
isBookmarked?: boolean
lastPageRead?: number
}