UNPKG

@ablanc/crunchyroll

Version:

Node.js module to scrape crunchyroll website.

11 lines (10 loc) 255 B
interface AnimeInfos { rating: number; synopsis: string; img: string | undefined; tags: string[]; genres: string[]; simulcast: string | false; } export declare const getAnimeInfos: (link: string) => Promise<AnimeInfos>; export {};