This repository has been archived by the owner on Sep 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathenum.d.ts
85 lines (85 loc) · 1.92 KB
/
enum.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
export declare enum Genre {
Action = "Action",
Adult = "Adult",
Adventure = "Adventure",
AwardWinning = "Award Winning",
Comedy = "Comedy",
Comic = "Comic",
Cooking = "Cooking",
Demons = "Demons",
Doujinshi = "Doujinshi",
Drama = "Drama",
Ecchi = "Ecchi",
Fantasy = "Fantasy",
FourKoma = "4-Koma",
GenderBender = "Gender Bender",
Harem = "Harem",
Historical = "Historical",
Horror = "Horror",
Josei = "Josei",
Lolicon = "Lolicon",
Magic = "Magic",
Manga = "Manga",
Manhua = "Manhua",
Manhwa = "Manhwa",
MartialArts = "Martial Arts",
Mature = "Mature",
Mecha = "Mecha",
Medical = "Medical",
Military = "Military",
Music = "Music",
Mystery = "Mystery",
Oneshot = "Oneshot",
Psychological = "Psychological",
Romance = "Romance",
SchoolLife = "School Life",
SciFi = "Sci-fi",
Seinen = "Seinen",
Shotacon = "Shotacon",
Shoujo = "Shoujo",
ShoujoAi = "Shoujo Ai",
Shounen = "Shounen",
ShounenAi = "Shounen Ai",
SliceOfLife = "Slice of Life",
Smut = "Smut",
Sports = "Sports",
Supernatural = "Supernatural",
SuperPower = "SuperPower",
Tragedy = "Tragedy",
Vampire = "Vampire",
Webtoon = "Webtoon",
Yaoi = "Yaoi",
Yuri = "Yuri",
NoChapters = "[no chapters]",
}
export declare enum Type {
Manga = "Manga",
Manhwa = "Manhwa",
Manhua = "Manhua",
Comic = "Comic",
Artbook = "Artbook",
Other = "Other",
}
export declare enum GenreCondition {
And = 0,
Or = 1,
}
export declare enum FilterStatus {
Ongoing = "Ongoing",
Complete = "Complete",
Cancelled = "Cancelled",
}
export declare enum FilterCondition {
Equal = 0,
Contains = 1,
NotContains = 2,
StartsWith = 3,
EndsWith = 4,
Less = 5,
Greater = 6,
LessThan = 7,
GreaterThan = 8,
}
export declare enum MangaSite {
MangaHere = "mangahere",
}