mgbuild 2.1.25 → 2.1.26
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/lib/index.d.ts +2 -0
- package/lib/index.js +1 -1
- package/lib/mgs/pc/chapter.d.ts +4 -0
- package/lib/mgs/pc/config.d.ts +6 -0
- package/lib/mgs/pc/headers.d.ts +69 -0
- package/lib/mgs/pc/index.d.ts +39 -0
- package/lib/mgs/pc/manga.d.ts +6 -0
- package/lib/mgs/pc/recent.d.ts +4 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ import * as ac from "./mgs/ac";
|
|
|
23
23
|
import * as md from "./mgs/md/alternative";
|
|
24
24
|
import * as ms from "./mgs/ms";
|
|
25
25
|
import * as mst from "./mgs/mst";
|
|
26
|
+
import * as pc from "./mgs/pc";
|
|
26
27
|
export * from "./mgs/md";
|
|
27
28
|
export * from "./hqs";
|
|
28
29
|
export { GeekGen } from "./utils/tools";
|
|
@@ -53,4 +54,5 @@ export declare const AlternativeSources: {
|
|
|
53
54
|
md: typeof md;
|
|
54
55
|
ms: typeof ms;
|
|
55
56
|
mst: typeof mst;
|
|
57
|
+
pc: typeof pc;
|
|
56
58
|
};
|