UNPKG

@tutkli/jikan-ts

Version:

Node.js wrapper for the Jikan API with built-in typings.

13 lines (12 loc) 246 B
export interface Statistics { completed: number; on_hold: number; dropped: number; total: number; scores: StatisticsScore[]; } export interface StatisticsScore { score: number; votes: number; percentage: number; }