mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-02-03 00:33:49 +03:00
44 lines
784 B
TypeScript
44 lines
784 B
TypeScript
export enum Downloader {
|
|
RealDebrid,
|
|
Torrent,
|
|
Gofile,
|
|
PixelDrain,
|
|
Qiwi,
|
|
}
|
|
|
|
export enum DownloadSourceStatus {
|
|
UpToDate,
|
|
Errored,
|
|
}
|
|
|
|
export enum CatalogueCategory {
|
|
Hot = "hot",
|
|
Weekly = "weekly",
|
|
Achievements = "achievements",
|
|
}
|
|
|
|
export enum SteamContentDescriptor {
|
|
SomeNudityOrSexualContent = 1,
|
|
FrequenceViolenceOrGore = 2,
|
|
AdultOnlySexualContent = 3,
|
|
FrequentNudityOrSexualContent = 4,
|
|
GeneralMatureContent = 5,
|
|
}
|
|
|
|
export enum Cracker {
|
|
codex = "CODEX",
|
|
rune = "RUNE",
|
|
onlineFix = "OnlineFix",
|
|
goldberg = "Goldberg",
|
|
userstats = "user_stats",
|
|
rld = "RLD!",
|
|
empress = "EMPRESS",
|
|
skidrow = "SKIDROW",
|
|
creamAPI = "CreamAPI",
|
|
smartSteamEmu = "SmartSteamEmu",
|
|
_3dm = "3dm",
|
|
flt = "FLT",
|
|
rle = "RLE",
|
|
razor1911 = "RAZOR1911",
|
|
}
|