UNPKG

@rexxhayanasi/nhentai

Version:

A scraper for NHentai with types

19 lines (18 loc) 469 B
import { IPagination, TURL } from '.'; import { List } from '../lib/Classes/List'; export interface IList { /** Pagination of the doujin list */ pagination: IPagination | null; /** Data of the list */ data: List[]; } export interface IListData { /** Title of the doujin */ title: string; /** ID of the doujin */ id: string; /** Cover image URL of the doujin */ cover: string | null; /** URL of the doujin */ url: TURL; }