better-trakt
Version:
A Trakt.tv client with native Typescript support and quality of life features
29 lines (24 loc) • 401 B
text/typescript
export interface ShowTranslation {
/**
* Localized title
*/
title: string;
/**
* Localized overview
*/
overview: string;
/**
* Language that content was localized too
*/
language: string;
/**
* Country for localization
*/
country: string;
}
export interface MovieTranslation extends ShowTranslation {
/**
* Localized tagline
*/
tagline: string;
}