UNPKG

better-trakt

Version:

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

14 lines (10 loc) 285 B
import { TraktApiContent } from '../traktTypes'; export interface AnticipatedBase { list_count: number; } export interface AnticipatedMovie extends AnticipatedBase { movie: TraktApiContent; } export interface AnticipatedShow extends AnticipatedBase { show: TraktApiContent; }