better-trakt
Version:
A Trakt.tv client with native Typescript support and quality of life features
13 lines • 395 B
TypeScript
import { TraktApiContent } from '../traktTypes';
export declare type UpdatedIDs = number[];
export declare type UpdatedStartDate = string;
export interface UpdatesBase {
updated_at: string;
}
export interface UpdatesMovie extends UpdatesBase {
movie: TraktApiContent;
}
export interface UpdatesShow extends UpdatesBase {
show: TraktApiContent;
}
//# sourceMappingURL=updates.d.ts.map