mgbuild 1.8.7 → 1.8.9

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.
@@ -1,10 +1,10 @@
1
- export declare type RecentScrapeList = {
1
+ export type RecentScrapeList = {
2
2
  cover?: string;
3
3
  title: string;
4
4
  code: string;
5
5
  chapters: number[];
6
6
  };
7
- export declare type ScrapedManga = {
7
+ export type ScrapedManga = {
8
8
  id: number;
9
9
  title: string;
10
10
  slug: string;
@@ -17,13 +17,13 @@ export declare type ScrapedManga = {
17
17
  chapters: ScrapedHostChapter[];
18
18
  chapter_code?: string;
19
19
  };
20
- export declare type ScrapedHostChapter = {
20
+ export type ScrapedHostChapter = {
21
21
  id?: string | number;
22
22
  number: number;
23
23
  title: string;
24
24
  geek: string;
25
25
  };
26
- export declare type MangaScrapeList = {
26
+ export type MangaScrapeList = {
27
27
  code: string;
28
28
  title: string;
29
29
  cover?: string;