@prose-reader/streamer 1.39.0 → 1.41.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generators/manifest/hooks/comicInfo.d.ts +1 -1
- package/dist/generators/manifest/hooks/epubOptimizer.d.ts +1 -1
- package/dist/prose-streamer.js +269 -266
- package/dist/prose-streamer.js.map +1 -1
- package/dist/prose-streamer.umd.cjs +9 -9
- package/dist/prose-streamer.umd.cjs.map +1 -1
- package/package.json +3 -3
|
@@ -4,7 +4,7 @@ import { Archive } from "../../../archives/types";
|
|
|
4
4
|
* Handle archive which contains ComicInfo.xml. This is a meta file
|
|
5
5
|
* used to define cbz, etc. I believe it comes from some sites or apps.
|
|
6
6
|
*/
|
|
7
|
-
export declare const comicInfoHook: ({ archive
|
|
7
|
+
export declare const comicInfoHook: ({ archive }: {
|
|
8
8
|
archive: Archive;
|
|
9
9
|
baseUrl: string;
|
|
10
10
|
}) => (manifest: Manifest) => Promise<Manifest>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Manifest } from "@prose-reader/shared";
|
|
2
2
|
import { Archive } from "../../../archives/types";
|
|
3
|
-
export declare const epubOptimizerHook: ({ archive
|
|
3
|
+
export declare const epubOptimizerHook: ({ archive }: {
|
|
4
4
|
archive: Archive;
|
|
5
5
|
baseUrl: string;
|
|
6
6
|
}) => (manifest: Manifest) => Promise<Manifest>;
|