UNPKG

@nekolab/hanime

Version:

Fast and efficient hanime.tv API wrapper written in TypeScript.

16 lines 342 B
import { DefaultResponse } from './default'; import { PartialHentai } from './hentai'; /** * Home page section */ export interface PageSection { title: string; data: PartialHentai[]; } /** * Home page response */ export interface HomePage extends DefaultResponse { sections: PageSection[]; } //# sourceMappingURL=home.d.ts.map