better-trakt
Version:
A Trakt.tv client with native Typescript support and quality of life features
14 lines • 474 B
TypeScript
import { TraktApiContent } from '../traktTypes';
export interface Played_Watched_CollectedBase {
watcher_count: number;
play_count: number;
collected_count: number;
}
export interface Played_Watched_CollectedMovie extends Played_Watched_CollectedBase {
movie: TraktApiContent;
}
export interface Played_Watched_CollectedShow extends Played_Watched_CollectedBase {
collector_count: number;
show: TraktApiContent;
}
//# sourceMappingURL=played.d.ts.map