@yeci226/nhentai-ts
Version:
A scraper for NHentai with types
21 lines (18 loc) • 483 B
text/typescript
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
}