UNPKG

uni_scrapper

Version:

A Collection of Movies, Series, Animes Scrapper.

25 lines 474 B
type MediaType = "movie" | "tv"; export interface Content { id: string; title: string; } export interface Season { title: string; poster: string; episodes: Content[]; } export interface Media { id: string; title: string; poster: string; seasons?: Season[]; content?: Content; type: MediaType; } export interface SearchResult { id: string; title: string; poster: string; } export {}; //# sourceMappingURL=media.d.ts.map