UNPKG

psn-api

Version:

A well-tested library that lets you get trophy, user, and game data from the PlayStation Network.

10 lines (9 loc) 345 B
import type { TrophyTitle } from "./trophy-title.model"; export interface UserTitlesResponse { /** The list of games played by the user. */ trophyTitles: TrophyTitle[]; /** The number of `TrophyTitle` entities returned from the PSN API. */ totalItemCount: number; nextOffset?: number; previousOffset?: number; }