UNPKG

better-trakt

Version:

A Trakt.tv client with native Typescript support and quality of life features

14 lines (10 loc) 283 B
import { TraktApiContent } from '../traktTypes'; export interface TrendingMediaBase { watchers: number; } export interface TrendingMovie extends TrendingMediaBase { movie: TraktApiContent; } export interface TrendingShow extends TrendingMediaBase { show: TraktApiContent; }