export interface IRatingScore { sub_path?: string; score: number; votes: string; } export type IRatingProvider = '30nama' | 'imdb' | 'rottentomatoes' | 'metacritic' | 'myanimelist' | 'mydramalist'; export type IRating = { [key in IRatingProvider]: IRatingScore; };