UNPKG

better-trakt

Version:

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

11 lines 329 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; } //# sourceMappingURL=anticipated.d.ts.map