psn-api
Version:
A well-tested library that lets you get trophy, user, and game data from the PlayStation Network.
16 lines (14 loc) • 302 B
text/typescript
import type { Trophy } from "./trophy.model";
export type UserThinTrophy = Pick<
Trophy,
| "trophyId"
| "trophyHidden"
| "earned"
| "earnedDateTime"
| "trophyType"
| "trophyRare"
| "trophyEarnedRate"
| "trophyProgressTargetValue"
| "trophyRewardImageUrl"
| "trophyRewardName"
>;