better-trakt
Version:
A Trakt.tv client with native Typescript support and quality of life features
11 lines • 314 B
TypeScript
import { TraktApiContent } from '../traktTypes';
export interface BoxOfficeBase {
revenue: number;
}
export interface BoxOfficeMovie extends BoxOfficeBase {
movie: TraktApiContent;
}
export interface BoxOfficeShow extends BoxOfficeBase {
show: TraktApiContent;
}
//# sourceMappingURL=boxOffice.d.ts.map