UserStatistics

interface UserStatistics {
  count_100: number;
  count_300: number;
  count_50: number;
  count_miss: number;
  grade_counts: GradeCounts;
  hit_accuracy: number;
  is_ranked: boolean;
  level: UserLevel;
  maximum_combo: number;
  play_count: number;
  play_time: number;
  pp: number;
  pp_exp: number;
  global_rank: number | null;
  global_rank_exp: number | null;
  ranked_score: number;
  replays_watched_by_others: number;
  total_hits: number;
  total_score: number;
  country_rank: number | null;
  variants?: UserStatisticsVariant[];
}

Types

Notice that something is missing? Found a typo? Think something's incomplete? Or think that something can be explained better? Feel free to open a pull request or submit an issue on the library's Github repository .