achievements-app/psn-api

View on GitHub
src/models/trophy-counts.model.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface TrophyCounts {
  /** Total count of bronze trophies. */
  bronze: number;

  /** Total count of silver trophies. */
  silver: number;

  /** Total count of gold trophies. */
  gold: number;

  /** 1 if the group contains a platinum trophy. */
  platinum: 0 | 1;
}