UNPKG

better-trakt

Version:

A Trakt.tv client with native Typescript support and quality of life features

25 lines 479 B
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; } //# sourceMappingURL=translations.d.ts.map