UNPKG

better-trakt

Version:

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

16 lines (14 loc) 229 B
/** * List of all certifications by country */ export interface CertificationList { us: Certification[]; } /** * A certification */ export interface Certification { name: string; slug: string; description: string; }