hianime
Version:
a scraper for hianime
24 lines • 482 B
TypeScript
export interface HianimeResult {
page: number;
totalPage: number;
hasNextPage: boolean;
results: Result[];
}
export interface Result {
id: string;
image?: string;
title?: string;
type?: string;
language?: Language;
dataId: string;
}
export interface Language {
sub?: null | string;
dub?: null | string;
}
export declare enum Type {
Ona = "ONA",
Special = "SPECIAL",
Tv = "TV"
}
//# sourceMappingURL=hianime-result.d.ts.map