UNPKG

better-trakt

Version:

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

14 lines (10 loc) 272 B
import { TraktApiContent } from '../traktTypes'; export interface BoxOfficeBase { revenue: number; } export interface BoxOfficeMovie extends BoxOfficeBase { movie: TraktApiContent; } export interface BoxOfficeShow extends BoxOfficeBase { show: TraktApiContent; }