UNPKG

@ablanc/crunchyroll

Version:

Node.js module to scrape crunchyroll website.

15 lines (14 loc) 298 B
interface Episode { link: string; name: string; img: string; nbr: string; } interface Season { name: string; nbr: number; episodes: Episode[]; } declare type getEpisodesFn = (url: string) => Promise<Season[]>; export declare const getEpisodes: getEpisodesFn; export {};