better-trakt
Version:
A Trakt.tv client with native Typescript support and quality of life features
18 lines (12 loc) • 341 B
text/typescript
import { TraktApiContent } from '../traktTypes';
export type UpdatedIDs = number[];
export type UpdatedStartDate = string;
export interface UpdatesBase {
updated_at: string;
}
export interface UpdatesMovie extends UpdatesBase {
movie: TraktApiContent;
}
export interface UpdatesShow extends UpdatesBase {
show: TraktApiContent;
}