-
Notifications
You must be signed in to change notification settings - Fork 2
/
siteEnum.ts
52 lines (49 loc) · 1.39 KB
/
siteEnum.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
export const Guya = 'guya.moe'
export enum SiteType {
Manganato = 'manganato.com',
Webtoons = 'webtoons.com',
LikeManga = 'likemanga.in',
Mangakakalot = 'mangakakalot.com',
MangaDex = 'mangadex.org',
MangaKomi = 'mangakomi.io',
HiperDEX = 'hiperdex.com',
ReaperScans = 'reaperscans.com',
AsuraScans = 'asuracomic.net',
Mangago = 'mangago.me',
ZeroScans = 'zscans.com',
Batoto = 'bato.to',
FlameComics = 'flamecomics.xyz',
ResetScans = 'reset-scans.co',
Cubari = 'cubari.moe',
Tapas = 'tapas.io',
Comikey = 'comikey.com',
Tappytoon = 'tappytoon.com',
ScyllaScans = 'scyllacomics.xyz',
}
export enum SiteName {
'manganato.com' = 'Manganato',
'webtoons.com' = 'Webtoons',
'likemanga.in' = 'LikeManga',
'mangakakalot.com' = 'Mangakakalot',
'mangadex.org' = 'MangaDex',
'mangakomi.io' = 'Manga Komi',
'hiperdex.com' = 'HiperDEX',
'reaperscans.com' = 'Reaper Scans',
'asuracomic.net' = 'Asura Scans',
'mangago.me' = 'Mangago',
'kitsu.io' = 'Kitsu',
'zscans.com' = 'Zero Scans',
'bato.to' = 'Batoto',
'flamecomics.xyz' = 'Flame Comics',
'reset-scans.co' = 'Reset Scans',
'cubari.moe' = 'Cubari / Guya',
'tapas.io' = 'Tapas',
'comikey.com' = 'Comikey',
'tappytoon.com' = 'Tappytoon',
'scyllacomics.xyz' = 'Scylla Scans',
}
export enum SiteState {
OFFLINE = 'Site not reachable',
INVALID = 'Visit to set cookies',
REACHABLE = 'Reachable',
}