psn-api
Version:
A well-tested library that lets you get trophy, user, and game data from the PlayStation Network.
12 lines (9 loc) • 326 B
text/typescript
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;
}