feat: chapter changing and manga scaling

This commit is contained in:
2024-07-07 22:18:13 +03:00
parent 8f5f12ad30
commit 29fb7fd04d
9 changed files with 209 additions and 39 deletions

View File

@@ -0,0 +1,9 @@
import { Page } from "../../services/parsers/rulib/rulib.chapter.dto";
interface CachedPage extends Page {
imageData?: Uint8Array;
}
export interface CachedPages {
[key: number]: CachedPage;
}