better-trakt
Version:
A Trakt.tv client with native Typescript support and quality of life features
11 lines • 324 B
TypeScript
import { TraktApiContent } from '../traktTypes';
export interface TrendingMediaBase {
watchers: number;
}
export interface TrendingMovie extends TrendingMediaBase {
movie: TraktApiContent;
}
export interface TrendingShow extends TrendingMediaBase {
show: TraktApiContent;
}
//# sourceMappingURL=trending.d.ts.map