rsshub
Version:
Make RSS Great Again!
61 lines (52 loc) • 1.6 kB
text/typescript
import { R18Site } from 'narou';
export enum SyosetuSub {
NOCTURNE = 'noc',
MOONLIGHT = 'mnlt',
MIDNIGHT = 'mid',
MOONLIGHT_BL = 'mnlt-bl',
}
export enum RankingPeriod {
DAILY = 'daily',
WEEKLY = 'weekly',
MONTHLY = 'monthly',
QUARTER = 'quarter',
YEARLY = 'yearly',
}
export enum NovelType {
TOTAL = 'total',
SHORT = 't',
ONGOING = 'r',
COMPLETE = 'er',
}
export const syosetuSubToNocgenre = {
[]: R18Site.Nocturne,
[]: R18Site.MoonLight,
[]: R18Site.MoonLightBL,
[]: R18Site.Midnight,
} as const;
export const syosetuSubToJapanese = {
[]: 'ノクターン',
[]: 'ムーンライト',
[]: 'ムーンライト BL',
[]: 'ミッドナイト',
} as const;
export const periodToOrder = {
[]: 'dailypoint',
[]: 'weeklypoint',
[]: 'monthlypoint',
[]: 'quarterpoint',
[]: 'yearlypoint',
} as const;
export const periodToJapanese = {
[]: '日間',
[]: '週間',
[]: '月間',
[]: '四半期',
[]: '年間',
} as const;
export const novelTypeToJapanese = {
[]: '総合',
[]: '短編',
[]: '連載中',
[]: '完結済',
} as const;