11 lines
237 B
TypeScript
11 lines
237 B
TypeScript
import { Page } from "../../services/parsers/rulib/rulib.chapter.dto";
|
|
|
|
export interface CachedPage extends Page {
|
|
imageData?: Uint8Array;
|
|
imageUrl: string;
|
|
|
|
isManhwa: boolean;
|
|
}
|
|
|
|
export type CachedPages = Map<number, CachedPage>;
|